shithub: mc

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