in reply to
Using eval to build array structure
Try replacing:
if (eval{$a.$i}[0] == eval{$a.$j}[0]){
with:
if (@{"$a$i"}[0] == @{"$a$j"}[0]){
That works in my
Perl Decoder Ring
. :-)
--
.dave.
Comment on
Re: Using eval to build array structure
Select
or
Download
Code
In Section
Seekers of Perl Wisdom