diff options
author | elioat <elioat@tilde.institute> | 2023-06-08 14:44:55 -0400 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2023-06-08 14:44:55 -0400 |
commit | 793ec6fd50144bffd1b91c520cf9156fe1dfccba (patch) | |
tree | dc5b0a4ca01d0f7ecd43e7bf48c59a2f6d444472 /coffee/starfish.coffee | |
parent | 5242a233f52394c58cb304c9a10b339553f4e71f (diff) | |
parent | 122ea6e7046520da4aeb8e5e787a9d3214b5ec46 (diff) | |
download | tour-793ec6fd50144bffd1b91c520cf9156fe1dfccba.tar.gz |
Merge branch 'master' of tilde.institute:~/public_repos/tour
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) |