shithub: mc

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