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