slash-lang / slash

A new language for the web
http://slash-lang.org
MIT License
386 stars 22 forks source link

Array diff #15

Closed mariovisic closed 11 years ago

mariovisic commented 11 years ago

Adds Array#- Works like:

[1, 1, 2, 3] - [1, 3] #=> [2] 

Tests are passing; Let me know if anything needs cleaning up.

haileys commented 11 years ago

Awesome, thanks for adding that! :grinning: