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