shithub: mc

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