foo(x) { if (x) { return 5; } else { } } main() { println(foo(true)); println(foo(false)); }