Kotlin - Loops and Ranges
Identify the error in this Kotlin code snippet:
outer@ for (i in 1..2) {
for (j in 1..2) {
if (i == 1) continue outer
println("i=$i, j=$j")
}
}