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