about summary refs log tree commit diff stats
path: root/coffee/starfish.js
blob: 3e6af8b02c524f6a8e9ec4323c03fd4257a4c96b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Generated by CoffeeScript 2.7.0
(function() {
  var cube, square;

  square = function(x) {
    return x * x;
  };

  cube = function(x) {
    return square(x) * x;
  };

  console.log(cube(33));

}).call(this);