mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-01-15 01:38:13 -05:00
10 lines
136 B
CoffeeScript
10 lines
136 B
CoffeeScript
numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9]
|
|
|
|
start = numbers[0..2]
|
|
|
|
middle = numbers[3...6]
|
|
|
|
end = numbers[6..]
|
|
|
|
copy = numbers[..]
|