shithub: mc

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