shithub: mc

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