shithub: mc

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