shithub: mc

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