shithub: mc

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