shithub: mc

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