shithub: mc

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