shithub: mc

ref: 4ccc52b8ed3c89262a3ee72bfdd05de1a3d0441c
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)
}