Help for this page

Select Code to Download


  1. or download this
    foreach my $cur_cnt (0..$#current)
    {
         foreach my $base_cnt (0..$#base)
    ...
               }
         }
    }
    
  2. or download this
    foreach my $current (@current)
    {
         foreach my $base (@base)
    ...
               }
         }
    }