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