shithub: mc

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