shithub: mc

ref: 69b24ca042654cfc2a6eb623cd2c86711f8c75bf
dir: /test/arraylit-ni.myr/

View raw version
use std
/* checks that we can create arrays without indexed initializers. exits with 2. */
const main = {
	var a = [1, 3, 2]
	std.exit(a[2])
}