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