val numbers: IntArray = intArrayOf(10, 20, 30, 40, 50)
See Kotlin – Basic Types for details.
You can also provide an initializer function as a second parameter:
val numbers = IntArray(5) { 10 * (it + 1) }
// [10, 20, 30, 40, 50]
val numbers: IntArray = intArrayOf(10, 20, 30, 40, 50)
See Kotlin – Basic Types for details.
You can also provide an initializer function as a second parameter:
val numbers = IntArray(5) { 10 * (it + 1) }
// [10, 20, 30, 40, 50]