shithub: mc

ref: 5cacde485bf6338bbf216b7a5249bb51c84e15fc
dir: /test/call.myr/

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

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