shithub: mc

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