diff options
author | elioat <hi@eli.li> | 2023-05-26 11:48:12 -0400 |
---|---|---|
committer | elioat <hi@eli.li> | 2023-05-26 11:48:12 -0400 |
commit | 20db18aa28fbe6b548ba1d654204276f132b2427 (patch) | |
tree | 20cf0902fcf27be8653af5b4a4cbc0cdb4b7291f /coffee | |
parent | e1eb2a339caf6509d12195deb8a2911f2cc57386 (diff) | |
download | tour-20db18aa28fbe6b548ba1d654204276f132b2427.tar.gz |
*
Diffstat (limited to '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) |