mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
9 lines
138 B
CoffeeScript
9 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[..]
|