shithub: mc

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