www.kxcad.net Home > Electronic Index > Altium(Protel) Index
Declaration
Begin
statement
End;
Description
The begin keyword starts a block in the script. A block is the main body of a script and can enclose any number of statements and can be used anywhere a single statement is required, such as the body of a conditional or loop statement.
Example
Var
Test : Integer;
Begin
Test := Test + 4;
ShowMessage(IntToStr(Test));
End;
See also
End keyword.