shithub: mc

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