shithub: mc

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