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