shithub: mc

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