shithub: mc

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