shithub: mc

ref: 4d3579d9e03400cc44fca47638454207c86b9fd2
dir: /test/call.myr/

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

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