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