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