shithub: mc

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