shithub: mc

ref: e23ac2b638d3badf2fbffb14050d3a8034069a24
dir: /test/call.myr/

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

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