shithub: mc

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