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