Kotlin Taille du tableau

arr = arrayOf(10, 20, 30, 40, 50)

// Use the size attribute
println(arr.size)
Noob_Code