my $variable [$var2 ...];my $variable = expression;
my $variable [$var2 ...];
my $variable = expression;
Same as in Perl: a "my" declares the listed variables to be local (lexically) to the enclosing block, or sub-routine.
local