shithub: mc

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