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