shithub: mc

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