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