Local variables/es

From Lazarus wiki
Revision as of 02:45, 19 February 2020 by Trev (talk | contribs) (Fixed syntax highlighting; deleted category included in page template)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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

   Una variable local se define en un procedimiento o función, y únicamente pueden ser usadas en ese ámbito.

 procedure HacerAlgo; 
 var x:type
 begin
 ...
 end;

Leer Mas