$hnr{'MAIN'} = { %list1 };
$hnr{'MAIN'}{'ZOP'} = { %list2 };
$hnr{'MAIN'}{'AP'} = { %list2 };
####
$hnr{'MAIN'} = \%list1;
$hnr{'MAIN'}{'ZOP'} = \%list2;
$hnr{'MAIN'}{'AP'} = \%list3;
####
use Data::Dumper qw( Dumper );
use Tie::IxHash ();
tie my %hnr, 'Tie::IxHash';
%hnr = (
ZOP => {},
AP => {},
Exit => undef
);
tie %{$hnr{'MAIN'}{'ZOP'}}, 'Tie::IxHash';
tie %{$hnr{'MAIN'}{'AP'} }, 'Tie::IxHash';
my @zop_and_ap_init = (
Dev => undef,
Con => undef,
Test => undef,
Exit => undef,
New => undef,
);
%{$hnr{'MAIN'}{'ZOP'}} = @zop_and_ap_init;
%{$hnr{'MAIN'}{'AP'} } = @zop_and_ap_init;
print Dumper(\%hnr);