mlox/lox.t/return/after_while.lox
2024-08-03 02:44:12 +02:00

5 lines
66 B
Lox

fun f() {
while (true) return "ok";
}
print f(); // expect: ok