mlox/lox.t/return/after_else.lox

5 lines
75 B
Lox
Raw Normal View History

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