joews / peach

A functional programming language
MIT License
3 stars 0 forks source link

Add a spread operator #30

Open joews opened 7 years ago

joews commented 7 years ago

With JS-style syntax:

a = [1, 2, 3]
b = 4
c = [...a, b]
// [1, 2, 3, 4]