shithub: mc

ref: 7baf0c3ce683e750beb30b41cdd7fc2060efbe3f
dir: /test/call.myr/

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

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