shithub: mc

ref: 2956d456959512a3e8b550899465395e033f7929
dir: /test/call.myr/

View raw version
use std
/* checks that simple function calls work. should exit with 42. */
const f = {
	-> 21
}

const main = {
	std.exit(f() + f())
}