shithub: mc

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