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