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