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

12 lines
62 B
Plaintext

fn a(x) {
print x;
}
fn b() {
return 42;
}
a(b(), b());