package First; my $x; package Other: print $x; # still the same $x #### package First; our $x; package Other: print $x; # still the same $x