shithub: mc

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