shithub: mc

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