shithub: mc

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