mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-14 07:38:03 +01:00
9 lines
113 B
Plaintext
9 lines
113 B
Plaintext
var f
|
|
for (i in [1, 2, 3]) {
|
|
var j = 4
|
|
f = Fn.new { System.print(i + j) }
|
|
continue
|
|
}
|
|
|
|
f.call()
|
|
// expect: 7 |