shithub: mc

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