shithub: mc

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