Files
wren/test/for/closure_in_body.wren
T

12 lines
154 B
Plaintext
Raw Normal View History

2013-12-24 21:04:11 -08:00
var list = []
for (i in [1, 2, 3]) {
var j = i + 1
2014-04-02 19:41:53 -07:00
list.add(new Fn { IO.print(j) })
2013-12-24 21:04:11 -08:00
}
for (f in list) f.call
// expect: 2
// expect: 3
// expect: 4