shithub: mc

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