shithub: mc

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