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