22.11.11.3 loop - endloop

Loop processing is repeated according to the number stored in the temporary addresses designated in the brackets "( )" following "loop".

Infinite Loop

The loop is infinite when there is no statement in the loop brackets ( ).

You can use infinite loops in Extended Scripts.

Example expression:

loop ( )
{
[w:[#INTERNAL]LS0100]=[w:[#INTERNAL]LS0100]+1
if ( [w:[#INTERNAL]LS0100] >10)
{
 break
}
endif
}
endloop