shithub: mc

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