Files
wren/test/language/for/close_over_loop_variable.wren

11 lines
138 B
Plaintext
Raw Permalink Normal View History

2013-12-24 21:04:11 -08:00
var list = []
for (i in [1, 2, 3]) {
2015-11-27 21:17:34 -08:00
list.add(fn () { System.print(i) })
2013-12-24 21:04:11 -08:00
}
2015-11-26 10:01:28 -08:00
for (f in list) f()
2013-12-24 21:04:11 -08:00
// expect: 1
// expect: 2
// expect: 3