Difference between revisions of "Begin"

From Free Pascal wiki
Jump to navigationJump to search
m (Just corrected english spelling)
(No difference)

Revision as of 22:03, 26 December 2005

keyword witch starts a program:

 program:1;
 var:(..);
 Begin
 (..);
 End.

Or a block of actions:

 (..)
 if (..)then
    begin (..)
    end
 else
    begin (..)
    end.