26 lines
260 B
Markdown
26 lines
260 B
Markdown
|
# Loops
|
||
|
|
||
|
Loops are indentation-sensitive.
|
||
|
|
||
|
## For each
|
||
|
|
||
|
```misti
|
||
|
// Loop through an object
|
||
|
for key in object do
|
||
|
print(key)
|
||
|
|
||
|
|
||
|
// Loop through an array
|
||
|
for value of array do
|
||
|
print(value)
|
||
|
```
|
||
|
|
||
|
## While
|
||
|
|
||
|
```misti
|
||
|
while condition do
|
||
|
print("loop")
|
||
|
```
|
||
|
|
||
|
|