shithub: mc

ref: 05d6f166bfbae35f412ac8276b34a61ecfb3a384
dir: /test/call.myr/

View raw version
use std
/* checks that simple function calls work. should exit with 42. */
const f = {
	-> 21
}

const main = {
	-> f() + f()
}