shithub: mc

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