shithub: mc

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