shithub: mc

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