shithub: mc

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