Help for this page
use strict; { ... our $foo; # same $foo as the other one print $foo; }
use strict; { ... my $foo; # totally different $foo print $foo; }