shithub: mc

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