shithub: mc

ref: 3c4b4fecaf3841b492c75b6dacbc7b68c6aa1703
dir: /test/call.myr/

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

const main = {
	-> f() + f()
}