shithub: mc

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