Run ❯
×
Change Orientation
Change Theme, Dark/Light
fun main() { var i = 0 while (i < 10) { println(i) i++ if (i == 4) { break } } }
0
1
2
3