shithub: mc

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