shithub: mc

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