Continue
Previous  Top  Next

Prototype

Continue

Description

It continues a cycle without reaching the block end.

Parameters

None.

Returned value

None.

Notes

None.

Example


//it initializes a counter 
Counter:=1;

//It starts a cycle ending when the top of the table is reached
While Counter<= 100 do 

Begin  
 
 
//It increases the variable "Counter"  
 Inc(Counter);  
 
if (Counter mod 2 <> 0) then continue;  
 
//bypassed if Counter is odd  
ApplicationLog(_CurrentAgent,IntToStr(Counter));  
 
 
End;