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

6 lines
68 B
Lox

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