Difference between revisions of "While"

From Lazarus wiki
Jump to navigationJump to search
m (typos corrected)
 
m
Line 2: Line 2:
 
   while (condition) do  
 
   while (condition) do  
 
     (block of statements);
 
     (block of statements);
 +
 +
{{Keywords}}

Revision as of 19:16, 9 January 2007

repeats a block of statements while a condition is true.

 while (condition) do 
   (block of statements);


Keywords: begindoelseendforifrepeatthenuntilwhile