jashkenas--coffeescript/documentation/coffee/overview.coffee

23 lines
309 B
CoffeeScript
Raw Normal View History

# Assignment:
number: 42
opposite_day: true
# Conditions:
number: -42 if opposite_day
# Functions:
2009-12-30 05:22:27 +00:00
square: x => x * x
# Arrays:
list: [1, 2, 3, 4, 5]
# Objects:
math: {
root: Math.sqrt
square: square
2009-12-30 05:22:27 +00:00
cube: x => x * square(x)
}
# Array comprehensions:
2009-12-30 05:22:27 +00:00
cubed_list: math.cube(num) for num in list