shithub: mc

ref: c00dc0165d9730b64ae1de42da0bae29c87ee175
dir: /test/arraylen.myr/

View raw version
use std
/* checks that array lengths work. should exit with 12. */
const main = {
	var a : int[12]

	std.exit(a.len)
}