Help for this page

Select Code to Download


  1. or download this
      ++$hash{$_} and next if $_ > 5;
    
  2. or download this
      # Increment $hash{$_} then if $_ > 5 loop next
      ++$hash{$_} and (next if $_ > 5);
    
  3. or download this
      ++$hash{$_} and next if $_ > 5;
    
  4. or download this
    $_ > 5 and (++$hash{$_} and next);