fun main() { var count = 1 while (count <= 5) { println("Count is $count") count++ } }
Click Run to execute this code.