shithub: mc

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