repeat { // body of loop } while (condition)
// program to display numbers var i = 1, n = 5 // repeat...while loop from 1 to 5 repeat { print(i) i = i + 1 } while (i <= n)