Loops

Loops allow code to repeat multiple times.

While Loop

Example:

let i = 0

while (i < 5) {
    print(i)
    i = i + 1
}

Output:

0
1
2
3
4

For Loop

Example:

for i in 0..5 {
    print(i)
}