Var

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

Keyword which is used to mark section, where variables and their data types are declared.

<delphi>

 program/unit
 (..)
 var:(a,b):real;
 (..)
 begin
 (..)
 end.

</delphi>