shithub: mc

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