Local variables

From Free Pascal wiki
Revision as of 13:51, 10 March 2015 by Eny (talk | contribs)
Jump to navigationJump to search

Deutsch (de) English (en) español (es) suomi (fi) русский (ru)

A local variable is defined inside a procedure, function or method and is only accessible from there.

procedure DoSomething; 
var x:type
begin
end