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