shithub: mc

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