shithub: mc

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