shithub: mc

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