shithub: mc

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