mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-16 20:28:04 +01:00
10 lines
95 B
Plaintext
10 lines
95 B
Plaintext
var f
|
|
while (true) {
|
|
var i = "i"
|
|
f = new Fn { IO.print(i) }
|
|
break
|
|
}
|
|
|
|
f.call
|
|
// expect: i
|