shithub: mc

ref: 56741fafc347f664a0ef0aebae51054b544891ed
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)
}