shithub: mc

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