ref: c7ad247d35a719539fc4df4e7a78d07e77a6f538 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()) }