import "core"; func main() { let x = new Array(2); x[1] = "test1"; x[2] = "test2"; println(x[1]); println(x[2]); }