Files
coffeescript/test/fixtures/execution/test_splices.coffee
2010-01-29 23:30:54 -05:00

5 lines
109 B
CoffeeScript

array: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
array[5..10]: [0, 0, 0]
puts array.join(' ') is '0 1 2 3 4 0 0 0'