my $x = 1; BEGIN { $x = 2; } print $x; # 1 #### BEGIN { my $x = 1; } print $x; # undefined, failure under strict.pm #### my $x = 1; { package foo; $x = 2; } print $x; # 2 #### my $x = 1; { package foo; my $x = 2; } print $x; # 1