use strict; { our $foo=10; } { our $foo; # same $foo as the other one print $foo; } #### use strict; { my $foo=10; } { my $foo; # totally different $foo print $foo; }