for Ex : package test1 ; my %hash = ( a=> 10 , b => 30 ) ; 1; in Script : use test1 ; print %hash ; # How to make this avilable in script without sub
perl
perl ×1