in reply to Re^2: string diff and compare
in thread string diff and compare

I fixed the errors

Except for this one:

my $longer = (@cold > @new) ? $#cold : $#new;

Which should be:

my $longer = (@cold > @cnew) ? $#cold : $#cnew;