mirror of
https://github.com/MorizzG/MLox.git
synced 2025-12-06 04:22:41 +00:00
10 lines
121 B
Lox
10 lines
121 B
Lox
fun f() {
|
|
while (true) {
|
|
var i = "i";
|
|
fun g() { print i; }
|
|
return g;
|
|
}
|
|
}
|
|
|
|
var h = f();
|
|
h(); // expect: i
|