shithub: mc

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