shithub: mc

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

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

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