shithub: mc

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