shithub: mc

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