shithub: mc

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