- or download this
sub outer {
...
...
}
...
}
- or download this
{
my $hidden_data;
...
...
}
}
- or download this
sub outer {
my $lexical = ...;
...
#or even
return $inner;
}
- or download this
my $hash{key} = ...; # is illegal
local $hash{$key} = ...; # is legal
...
my $x = 1;
{
local $x = 2; # is illegal. Can't localize a lexical variable
- or download this
our $variable = 15;
...
one();
two();
- or download this
our $variable = 15;
...
one();
two();