shithub: mc

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