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