shithub: mc

ref: 11755c230ea87f02e334978daa731f1c31815986
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)
}