shithub: mc

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