jashkenas--coffeescript/documentation/coffee/functions.coffee

3 lines
52 B
CoffeeScript
Raw Normal View History

2010-07-29 00:51:35 -04:00
square = (x) -> x * x
cube = (x) -> square(x) * x