mlox/lox.t/return/in_function.lox

6 lines
68 B
Lox
Raw Normal View History

2024-08-03 02:44:12 +02:00
fun f() {
return "ok";
print "bad";
}
print f(); // expect: ok