- or download this
my $x = 1;
BEGIN { $x = 2; }
print $x; # 1
- or download this
BEGIN { my $x = 1; }
print $x; # undefined, failure under strict.pm
- or download this
my $x = 1;
{
...
$x = 2;
}
print $x; # 2
- or download this
my $x = 1;
{
...
my $x = 2;
}
print $x; # 1