shithub: mc

ref: f90519332a6d24444a54c2b0943f705e8579550f
dir: /test/call.myr/

View raw version
use std
/* checks that simple function calls work. should exit with 42. */
const f = {
	-> 21
}

const main = {
	std.exit(f() + f())
}