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