shithub: mc

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