shithub: mc

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