shithub: mc

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