shithub: mc

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