/
for loop
for loop
A for loop allows you to execute a block of code a specific number of times.
for init, max/min value, increment/decrement
do
trace("executed code")
end
init or i: initialization variable or a starting value
max/min value: maximum or minimum value till which the loop continues to execute.
increment/decrement: a counter defined to update the value after each iteration fo the loop. By default, this value is defined as 1 if not specified.
For example: The for loop below defines i to start at 1 and loop through the statement, until i=5, incrementing by 1 each time.
for i = 1, 5 do
trace("Iteration: "..i)
end
We can see this example clearly in the Translator by navigating the loops in the Annotation Windows and seeing the iteration count change.
, multiple selections available,
Related content
IMAP Library
IMAP Library
Read with this
while loop
while loop
More like this
Lua tables as dictionaries
Lua tables as dictionaries
Read with this
for in loop
for in loop
More like this
Loops
More like this
Infinite loop
Infinite loop
More like this