shithub: mc

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