shithub: mc

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