shithub: mc

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