shithub: mc

ref: 7680e160787aad4408be9535856f4c3a2ba72337
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)
}