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