Difference between revisions of "Local variables"

From Free Pascal wiki
Jump to navigationJump to search
m
Line 1: Line 1:
a local variable is defined in a [[procedure]] or [[function]]
+
a local variable is defined in a [[Procedure|procedure]] or [[Function|function]]
 
  begin
 
  begin
 
   var x:type
 
   var x:type
 
  end
 
  end

Revision as of 16:52, 10 January 2007

a local variable is defined in a procedure or function

begin
 var x:type
end