shithub: mc

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