Files
wren/test/core/range/map.wren
T

4 lines
78 B
Plaintext
Raw Normal View History

2014-02-16 09:20:31 -08:00
var a = 1..3
var b = a.map {|x| x + 1 }.list
2014-02-16 09:20:31 -08:00
IO.print(b) // expect: [2, 3, 4]