shithub: mc

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