shithub: mc

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