shithub: mc

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