Help for this page

Select Code to Download


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