thp/doc-generator/markdown/en/docs/latest/flow-control/loops.md
2023-03-28 19:18:06 -05:00

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")