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