shithub: mc

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