shithub: mc

ref: 77a41acbc02d1a63dd8d1345e3cf1875befd7eaa
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])
}