shithub: mc

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