shithub: mc

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