shithub: mc

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