Help for this page

Select Code to Download


  1. or download this
    foreach (@ARGV) { $Y{$y}++,next if $y eq $_;  }
    
  2. or download this
        $Y{$y} += grep $y eq $_, @ARGV;
    
  3. or download this
        $Y{$y} += (grep $y eq $_, @ARGV) || 1;