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