shithub: mc

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