mlox/lox.t/while/return_closure.lox

10 lines
121 B
Lox
Raw Normal View History

2024-08-03 02:44:12 +02:00
fun f() {
while (true) {
var i = "i";
fun g() { print i; }
return g;
}
}
var h = f();
h(); // expect: i