shithub: mc

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