Kotlin - Loops and Ranges
Consider nested loops in Kotlin:
What is the output?
for (i in 1..3) {
for (j in 1..3) {
if (j == 2) break
print("$i$j ")
}
}What is the output?
