shithub: mc

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