shithub: mc

ref: 74b3aaed1a5a978a4d64ae4bdce9b0cdcf82860c
dir: /test/aritylow.myr/

View raw version
use std
/* should fail because we call f with too few args */
const f = {a:int, b:int, c:int
	-> a + b + c
}

const main = {
	std.exit(f(1, 2))
}