shithub: mc

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