shithub: mc

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