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