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