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