shithub: mc

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