Help for this page

Select Code to Download


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