forked from Mirror/wren
10 lines
100 B
Plaintext
10 lines
100 B
Plaintext
var f = new Fn {
|
|
while (true) {
|
|
var i = "i"
|
|
return i
|
|
}
|
|
}
|
|
|
|
IO.print(f.call)
|
|
// expect: i
|