Files
wren/test/list/where.wren
T

7 lines
136 B
Plaintext
Raw Normal View History

2014-02-15 00:42:14 -06:00
var a = [1, 2, 3]
2014-02-16 09:20:31 -08:00
var b = a.where(fn (x) x > 1)
2014-02-15 00:42:14 -06:00
IO.print(b) // expect: [2, 3]
2014-02-16 09:20:31 -08:00
var c = a.where(fn (x) x > 10)
2014-02-15 00:42:14 -06:00
IO.print(c) // expect: []