Control flow
Control flowLoops
Loops
Loops
loop i in range(1, 11) {
println(i)
}
var count = 0
do {
printf("Count is: %s\n", count)
count++
} while count < 10
var count = 0
while count < 20 {
printf("Count is: %s\n", count)
count++
}