zlox/samples/ch24_invalid_arg_count.lox

8 lines
74 B
Plaintext

fun a() { b(); }
fun b() { c(); }
fun c() {
c("too", "many");
}
a();