about summary refs log tree commit diff stats
path: root/coffee/starfish.coffee
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2023-06-08 14:44:55 -0400
committerelioat <elioat@tilde.institute>2023-06-08 14:44:55 -0400
commit793ec6fd50144bffd1b91c520cf9156fe1dfccba (patch)
treedc5b0a4ca01d0f7ecd43e7bf48c59a2f6d444472 /coffee/starfish.coffee
parent5242a233f52394c58cb304c9a10b339553f4e71f (diff)
parent122ea6e7046520da4aeb8e5e787a9d3214b5ec46 (diff)
downloadtour-793ec6fd50144bffd1b91c520cf9156fe1dfccba.tar.gz
Merge branch 'master' of tilde.institute:~/public_repos/tour
Diffstat (limited to 'coffee/starfish.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)