evkaky
repeat(3) { if (it == 0) return@repeat println("inside repeat") }
ephemient
repeat(3, block)
block(0); block(1); block(2)
return
println()
it == 0
1
2
repeat
forEach
run { repeat(3) { if (it == 0) return@run println("inside repeat") } }
for
for (i in 0 until 3) { if (i == 0) break println("inside for") }
A modern programming language that makes developers happier.