shithub: mc

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