my command


Usage

my $variable [$var2 ...];

my $variable = expression;

Description

Same as in Perl: a "my" declares the listed variables to be local (lexically) to the enclosing block, or sub-routine.

See Also

local