wghile kotlin code example
Example 1: when kotlin
when (x) {
1 -> print("x == 1")
2 -> print("x == 2")
else -> { // Note the block
print("x is neither 1 nor 2")
}
}
Example 2: while loop kotlin
for (item in collection) print(item)