shithub: mc

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