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