thp/doc-generator/markdown/en/docs/latest/flow-control/loops.md

260 B

Loops

Loops are indentation-sensitive.

For each

// Loop through an object
for key in object do
    print(key)


// Loop through an array
for value of array do
    print(value)

While

while condition do
    print("loop")