shithub: mc

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