in reply to Newbie Question on pushing Arrays
LOOP: for ($number = 3; $number < $limit; $number += 2) { ... foreach $div (@primes) { if ($number % $div == 0) { next LOOP; } } ... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Newbie Question on pushing Arrays
by JojoLinkyBob (Scribe) on May 04, 2001 at 20:30 UTC | |
by no_slogan (Deacon) on May 04, 2001 at 22:24 UTC |