Help for this page

Select Code to Download


  1. or download this
        my %Y;
     
    ...
                $Y{$y}++; 
            }
        }
    
  2. or download this
        if (@ARGV) {
            for (@ARGV) { 
    ...
                next if $y eq $_;  
            }
        }
    
  3. or download this
        for (@ARGV) { 
            $Y{$y}++;
            next if $y eq $_;  
        }