shithub: mc

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