Perl Programming/Keywords/my
< Perl Programming < KeywordsThe my keyword
This keyword is used before a variable decleration and makes the variable lexically in this block, file, or eval. If the user wants that more than one variable is declared in this way, parenthesis are required.
Syntax
my VARIABLE_LIST
my TYPE VARIABLE_LIST
my VARIABLE_LIST : ATTRIBUTES
my TYPE VARIABLE_LIST : ATTRIBUTES
Examples
my ( undef, $min, $hour ) = localtime;
[…]
my $dollars = 123;
See also
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.