mlox/lox.t/while/return_inside.lox
2024-08-03 02:44:12 +02:00

9 lines
89 B
Lox

fun f() {
while (true) {
var i = "i";
return i;
}
}
print f();
// expect: i