shithub: mc

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