about summary refs log tree commit diff stats
path: root/coffee
diff options
context:
space:
mode:
authorelioat <hi@eli.li>2023-05-26 11:48:12 -0400
committerelioat <hi@eli.li>2023-05-26 11:48:12 -0400
commit20db18aa28fbe6b548ba1d654204276f132b2427 (patch)
tree20cf0902fcf27be8653af5b4a4cbc0cdb4b7291f /coffee
parente1eb2a339caf6509d12195deb8a2911f2cc57386 (diff)
downloadtour-20db18aa28fbe6b548ba1d654204276f132b2427.tar.gz
*
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)