mlox/lox.t/while/return_inside.lox

9 lines
89 B
Lox
Raw Permalink Normal View History

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