shithub: mc

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