REPEAT   UNTIL   END_REPEAT

Statement - Repeat a list of statements.

Syntax

    REPEAT
        <statements>
    UNTIL <BOOL expression> END_REPEAT;

Remarks

The statements between "REPEAT" and "UNTIL" are executed until the Boolean expression is TRUE. The condition is evaluated after the statements are executed. Statements are executed at least once.

ST Language

iPos := 0;
REPEAT
   MyArray[iPos] := 0;
   iNbCleared := iNbCleared + 1;
   iPos := iPos + 1;
UNTIL iPos = iMax END_REPEAT;

FBD Language

Not available

FFLD Language

Not available

IL Language

Not available

See also

IF   WHILE   FOR   CASE    EXIT

 


Stay Connected with Kollmorgen

Copyright © 2015 Kollmorgen™