shithub: mc

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