mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-02-18 11:31:20 -05:00
7 lines
113 B
CoffeeScript
7 lines
113 B
CoffeeScript
|
|
|
|
array: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
|
|
|
|
array[5..10]: [0, 0, 0]
|
|
|
|
print(array.join(' ') is '0 1 2 3 4 0 0 0') |