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