shithub: mc

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