hi what is right way to get size of a 2D array dec...
# getting-started
a
hi what is right way to get size of a 2D array declared this way
Copy code
val s: Array<LongArray> = Array(5) { LongArray(10) }
println("size" + s.size)
I get 5 a output, how can i get information on the col size ?