shithub: mc

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