shithub: mc

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