about summary refs log tree commit diff stats
path: root/coffee/starfish.coffee
blob: 7f637202954de4a42676bfdc36df2e06705cfad9 (plain) (blame)
1
2
3
4
5
square = (x) -> x * x
cube   = (x) -> square x * x

console.log cube 33