Files
wren/test/language/for/only_evaluate_sequence_once.wren
T

11 lines
179 B
Plaintext
Raw Normal View History

2015-07-10 09:18:22 -07:00
var f = Fn.new {
2015-09-15 07:46:09 -07:00
System.print("evaluate sequence")
2013-12-24 21:04:11 -08:00
return [1, 2, 3]
}
2015-09-15 07:46:09 -07:00
for (i in f.call()) System.print(i)
2013-12-24 21:04:11 -08:00
// expect: evaluate sequence
// expect: 1
// expect: 2
// expect: 3