check condition on loop kotlin code example
Example 1: for loop kotlin
for (x in 0..10) println(x)
Example 2: while loop kotlin
for (item in collection) print(item)
for (x in 0..10) println(x)
for (item in collection) print(item)