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