use strict; use MyPack; my $myString = $MyPack::a; print $myString; #### package MyPack; require Exporter; $a = "Read from Mypack" #### package MyPack; our $a = "Read from Mypack"
## package MyPack; require Exporter; $a = "Read from Mypack" ##
## package MyPack; our $a = "Read from Mypack"