shithub: mc

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