shithub: mc

ref: 6ffd7e7a7d3581d6d101a17767fcaf20a797a041
dir: /test/call.myr/

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

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