shithub: mc

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