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