shithub: mc

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