shithub: mc

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