mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
35 lines
No EOL
413 B
CoffeeScript
35 lines
No EOL
413 B
CoffeeScript
# Basic blocks.
|
|
results: [1, 2, 3].map (x) ->
|
|
x * x
|
|
|
|
ok results.join(' ') is '1 4 9'
|
|
|
|
|
|
# Chained blocks, with proper indentation levels:
|
|
results: []
|
|
|
|
counter: {
|
|
tick: (func) ->
|
|
results.push func()
|
|
this
|
|
}
|
|
|
|
counter
|
|
.tick ->
|
|
3
|
|
.tick ->
|
|
2
|
|
.tick ->
|
|
1
|
|
|
|
ok results.join(' ') is '3 2 1'
|
|
|
|
|
|
# Make incorrect indentation safe.
|
|
func: ->
|
|
obj: {
|
|
key: 10
|
|
}
|
|
obj.key - 5
|
|
|
|
ok func() is 5 |