Instruction EXST : CONTINUE
CONTINUE
est une déclaration du texte structuré étendu (ExST).
L'instruction est utilisée à l'intérieur d'un POUR
boucler, TANDIS QUE
boucle, ou RÉPÉTER
boucle pour sauter au début de la prochaine exécution de la boucle.
Exemple 77. Exemple
FOR Counter:=1 TO 5 BY 1 DO INT1:=INT1/2; IF INT1=0 THEN CONTINUE; (* to avoid a division by zero *) END_IF Var1:=Var1/INT1; (* executed, if INT1 is not 0 *) END_FOR; Erg:=Var1;