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

11 lines
179 B
Plaintext
Raw Permalink Normal View History

var f = Fn.new {
System.print("evaluate sequence")
2013-12-24 21:04:11 -08:00
return [1, 2, 3]
}
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