Run ❯
Get your
own
website
×
Change Orientation
fun main() { var i = 0 while (i < 10) { println(i) i++ if (i == 4) { break } } }
0
1
2
3