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