shithub: mc

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