Difference between revisions of "Begin"

From Lazarus wiki
Jump to navigationJump to search
m
Line 26: Line 26:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
A '''begin''' ''must'' be closed with '''[[End|end]]'''.
+
'''begin''' ''должно'' быть закрыто '''[[End|end]]'''.
  
 
{{Keywords}}
 
{{Keywords}}

Revision as of 19:13, 12 August 2012

Deutsch (de) English (en) español (es) suomi (fi) français (fr) русский (ru) 中文(中国大陆)‎ (zh_CN)

The keyword begin is used to indicate the start of the executable section of a function, method of an object, procedure, program, property of an object, or is used to delineate the start of a block statement.

For a function, method, procedure, program, or property, it is used after all const, type and var declarations, and before the first executable statement. It is always terminated by an end statement:

  program Project1;
  var (..);
  begin
    (..);
  end.

For a block statement, it delineates the top of the block, and is also terminated by an end statement:

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

begin должно быть закрыто end.


Keywords: begindoelseendforifrepeatthenuntilwhile