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