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

7 lines
143 B
Plaintext
Raw Normal View History

2014-02-16 09:20:31 -08:00
var a = 1..3
2015-04-03 11:22:34 -07:00
var b = a.where {|x| x > 1 }.toList
2014-02-16 09:20:31 -08:00
IO.print(b) // expect: [2, 3]
2015-04-03 11:22:34 -07:00
var c = a.where {|x| x > 10 }.toList
2014-02-16 09:20:31 -08:00
IO.print(c) // expect: []