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