Difference between revisions of "To"

From Lazarus wiki
Jump to navigationJump to search
m (Text replace - "delphi>" to "syntaxhighlight>")
m (Text replace - "Delphi>" to "syntaxhighlight>")
Line 6: Line 6:
 
     //...
 
     //...
 
End.
 
End.
</Delphi>
+
</syntaxhighlight>

Revision as of 00:50, 25 March 2012

For to do

var I:integer;
begin
 For I :=1 to 10000 do
    //...
End.