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