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)
}
Loops allow code to repeat multiple times.
Example:
let i = 0
while (i < 5) {
print(i)
i = i + 1
}
Output:
0
1
2
3
4
Example:
for i in 0..5 {
print(i)
}
From here you can search these documents. Enter your search terms below.
| Keys | Action |
|---|---|
| ? | Open this help |
| n | Next page |
| p | Previous page |
| s | Search |