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