mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-12 06:38:45 +01:00
10 lines
109 B
Plaintext
10 lines
109 B
Plaintext
var f
|
|
while (f == null) {
|
|
var i = "i"
|
|
f = Fn.new { System.print(i) }
|
|
continue
|
|
}
|
|
|
|
f.call()
|
|
// expect: i
|