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

3 lines
52 B
CoffeeScript
Raw Normal View History

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