shithub: mc

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