shithub: mc

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