mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-02-18 03:21:20 -05:00
6 lines
101 B
CoffeeScript
6 lines
101 B
CoffeeScript
func: first, second, *rest =>
|
|
rest.join(' ')
|
|
|
|
result: func(1, 2, 3, 4, 5)
|
|
|
|
print(result is "3 4 5") |