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