For

From Free Pascal wiki
Revision as of 07:25, 17 October 2007 by Djzepi (talk | contribs)
Jump to navigationJump to search

keyword used with "to"\"downto" and "do" for a loop: <delphi>

 for I:=1 to 100 do

</delphi> (repeats the actions for a hundred times,from 1 to 100)

<delphi>

 for I:=100 downto 1

</delphi> (repeats the actions for a hundred timed,from 100 to 1)

  • you can use types instead of numbers.


Keywords: begindoelseendforifrepeatthenuntilwhile