jashkenas--coffeescript/test/fixtures/execution/test_splats.coffee

6 lines
101 B
CoffeeScript
Raw Normal View History

2009-12-31 22:50:12 +00:00
func: first, second, *rest =>
rest.join(' ')
result: func(1, 2, 3, 4, 5)
print(result is "3 4 5")