Cleanups for merging map method

This commit is contained in:
Kyle Marek-Spartz
2014-02-15 00:34:30 -06:00
parent 83ea5aaf45
commit 1d31c95872

View File

@ -2,4 +2,4 @@ var a = [1,2,3]
var inc = fn (x) { return x + 1 }
var b = a.map(inc)
IO.write(b) // expect: [2, 3, 4]
IO.print(b) // expect: [2, 3, 4]