shithub: mc

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