shithub: mc

ref: 5131214c8ddbd9a4f3a4b6c9acef575985ff867d
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())
}