shithub: mc

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