shithub: mc

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