Как можно импортировать хэши из одного файла в другой файл?
у меня есть два хэша скажем фруктовый и овощной в a.pl файл как я могу получить доступ к ним в другом файле скажем b.pl-что?
Что я уже пробовал:
#a.pl файл
%fruit=('apple',1,'mango',2,'grapes',3); %vegetable=('carrot',4,'potato',5); %flowers=('rose',6,'jasmine',7);
#b.pl файл
$praticular_product="apple"; #check $praticular_product belongs to fruit hash or vegetable hash if(exists($fruit{$praticular_product})) { print "fruit\n"; } elsif(exists($vegetable{$praticular_product})) { print "vegetable\n" } elsif((exists($flowers{$praticular_product}))) { print "flower\n" } else { print "none\n" } print $praticular_product;