shithub: mc

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