shithub: mc

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