shithub: mc

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