in reply to Bug in List::Compare or User Error?

I suspect that the following line is incorrect:
$lc->new( \@three, \@two );
Try changing that to:
$lc = List::Compare->new( \@three, \@two );
(and ditto for the subsequent similar lines)

Cheers,
Darren :)

Replies are listed 'Best First'.
Re^2: Bug in List::Compare or User Error?
by awohld (Hermit) on Feb 15, 2006 at 06:59 UTC
    That worked! Thanks.