shithub: mc

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