shithub: mc

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