数组和集合 / 数组

val count = 15
val arInt = Array(count, {0})
arInt[0] = 1

arInt.forEach { print("$it ") }