shithub: mc

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