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