shithub: mc

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