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