shithub: mc

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