while loop
A while loop repeats a block of code as long as a given condition is true.
for condition do
trace("executed code")
endFor example: This while loop below will iterate and trace 1 to 5
local i = 1
while i <= 5 do
trace("Iteration: "..i)
i = i + 1
endWe can see this example clearly in the Translator by navigating the loops in the https://interfaceware.atlassian.net/wiki/spaces/IXB/pages/2685042782 and see the iteration change.