mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-05-03 03:00:14 -04:00
17 lines
175 B
CoffeeScript
17 lines
175 B
CoffeeScript
i: 100
|
|
while i -= 1
|
|
|
|
print(i is 0)
|
|
|
|
|
|
i: 5
|
|
list: while i -= 1
|
|
i * 2
|
|
|
|
print(list.join(' ') is "8 6 4 2")
|
|
|
|
|
|
i: 5
|
|
list: (i * 3 while i -= 1)
|
|
|
|
print(list.join(' ') is "12 9 6 3") |