"Joshua D. Drake" <[EMAIL PROTECTED]> writes: > > while($howmany--) { push @morepgGurus, $pgGuru; } > > This is just wrong...
yeah, it would have been much clearer written as: push @morepgGurus, ($pgGuru)x$howmany; Or at least the perlish: for (1..$howmany) instead of C style while syntax. Ok. I stop now. -- greg ---------------------------(end of broadcast)--------------------------- TIP 2: you can get off all lists at once with the unregister command (send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])