Help for this page

Select Code to Download


  1. or download this
    sub compare {
      return unless length $_[0] == length $_[1];
    ...
    
      return 1;
    }
    
  2. or download this
    {
       my @data = (
    ...
       printf("%-5s -   %-8s is %sOK\n", @$_, (compare(@$_)?'':'not '))
          foreach @data;
    }