shithub: mc

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

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

const main = {
	std.exit(f() + f())
}