shithub: mc

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