shithub: mc

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