in reply to Re^2: Print name of array
in thread Print name of array

Then it should have been a HoA:

my %HoA = ( AdhLnk => \@AdhLnk, MtrLnk => \@MtrLnk, SltLnk => \@SltLnk +, OthLnk => \@OthLnk, AdhDlk => \@AdhDlk, MtrDlk => \@MtrDlk, SltDlk => \@SltDlk, OthDlk + => \@OthDlk ); print "Output loop\n"; for my $name (keys %HoA) { print "$name\t@{ $HoA{$name} }\n"; }

And most probably there should not have been all those arrays in the first place.

Jenda
Enoch was right!
Enjoy the last years of Rome.

Replies are listed 'Best First'.
Re^4: Print name of array
by Saved (Beadle) on Dec 06, 2011 at 14:09 UTC
    Thank You, This helps. Have a gr8 dA