shithub: mc

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