shithub: mc

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