ref: 09a34baac6757c7a4c33e3e3c50054acbb1b70bb dir: /test/call.myr/
use std /* checks that simple function calls work. should exit with 42. */ const f = { -> 21 } const main = { std.exit(f() + f()) }