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