mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
22 lines
312 B
CoffeeScript
22 lines
312 B
CoffeeScript
# Assignment:
|
|
number: 42
|
|
opposite_day: true
|
|
|
|
# Conditions:
|
|
number: -42 if opposite_day
|
|
|
|
# Functions:
|
|
square: x => x * x.
|
|
|
|
# Arrays:
|
|
list: [1, 2, 3, 4, 5]
|
|
|
|
# Objects:
|
|
math: {
|
|
root: Math.sqrt
|
|
square: square
|
|
cube: x => x * square(x).
|
|
}
|
|
|
|
# Array comprehensions:
|
|
cubed_list: math.cube(num) for num in list.
|