- or download this
my $counter = 0;
while ($counter < $limit) {
...
# more code if $thingy ne 'PARTY'
++$counter; # thanks ikegami
}
- or download this
my $counter = 0;
while ($counter < $limit) {
...
# more code if $thingy ne 'PARTY'
}
continue { ++$counter; }
- or download this
if ($condition1) {
# statement 1
...
# statement 3
next;
}
- or download this
next if $condition1;
# more code
next if $condition2;