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