shithub: mc

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