shithub: mc

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