Difference between revisions of "To"

From Lazarus wiki
Jump to navigationJump to search
(New page: == For to do == <delphi> var I:integer; begin For I :=1 to 10000 do //... End. </Delphi>)
 
m (Text replace - "delphi>" to "syntaxhighlight>")
Line 1: Line 1:
 
== [[For]] to [[Do|do]] ==
 
== [[For]] to [[Do|do]] ==
<delphi>
+
<syntaxhighlight>
 
var I:integer;
 
var I:integer;
 
begin
 
begin

Revision as of 15:48, 24 March 2012

For to do

<syntaxhighlight> var I:integer; begin

For I :=1 to 10000 do
   //...

End. </Delphi>