Files
wren/test/list/map.wren
T

6 lines
105 B
Plaintext
Raw Normal View History

2014-02-15 00:34:30 -06:00
var a = [1, 2, 3]
2014-02-14 23:06:29 -06:00
var inc = fn (x) { return x + 1 }
var b = a.map(inc)
2014-02-15 00:34:30 -06:00
IO.print(b) // expect: [2, 3, 4]