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

4 lines
84 B
Plaintext
Raw Normal View History

var a = 1..3
var b = a.map {|x| x + 1 }.toList
System.print(b) // expect: [2, 3, 4]