shithub: mc

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