about summary refs log tree commit diff stats
path: root/coffee
diff options
context:
space:
mode:
Diffstat (limited to 'coffee')
-rw-r--r--coffee/starfish.coffee5
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)