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