shithub: mc

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