for loop in kotlin in android studio code example
Example 1: kotlin simple for loop
val names = listOf("Jack", "John", "Tim")
for(name in names){
println(name)
}
Example 2: for loop in kotlin with index
collection.forEachIndexed { index, element ->
// ...
}