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