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