shithub: mc

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