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

7 lines
151 B
Plaintext
Raw Normal View History

var a = 1..3
2015-04-03 11:22:34 -07:00
var b = a.where {|x| x > 1 }.toList
System.print(b) // expect: [2, 3]
2015-04-03 11:22:34 -07:00
var c = a.where {|x| x > 10 }.toList
System.print(c) // expect: []