Help for this page

Select Code to Download


  1. or download this
      if(exists $hash{$_}){ # exists, so increment
        $hash{$_}++;
    ...
      else{                 # doesn't exist, so set to 1
        $hash{$_} = 1;
      }
    
  2. or download this
      $hash{$_}++;
    
  3. or download this
      $_++ while exists $hash{$_};
      $hash{$_}++;