shithub: mc

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