shithub: mc

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