shithub: mc

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