Files
Toy/tests/scripts/test_function_invocation_in_arguments.toy
T
2026-05-19 13:24:17 +10:00

11 lines
63 B
Plaintext

fn a(x) {
assert x == 42;
}
fn b() {
return 42;
}
a(b());