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