Help for this page

Select Code to Download


  1. or download this
    my $i = 0;
    foreach my $element (@array) {
        do_something($element) unless ($i++ % 3);
    }