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