diff options
Diffstat (limited to 'coffee/starfish.coffee')
-rw-r--r-- | coffee/starfish.coffee | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/coffee/starfish.coffee b/coffee/starfish.coffee index bfd5f44..7f63720 100644 --- a/coffee/starfish.coffee +++ b/coffee/starfish.coffee @@ -1,4 +1,5 @@ square = (x) -> x * x -cube = (x) -> square(x) * x +cube = (x) -> square x * x + +console.log cube 33 -console.log cube(33) |