Help for this page
++$hash{$_} and next if $_ > 5;
# Increment $hash{$_} then if $_ > 5 loop next ++$hash{$_} and (next if $_ > 5);
$_ > 5 and (++$hash{$_} and next);