shithub: mc

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