On Tue, 18 Sep 2001, Mark Bergeron wrote:

> I would go:
>
> unless ( ($x < 50) || ($x > 80) ){
>     print "";
> }

No... that will return true for all values less than fifty or all values
more than 80.  To get the numbers in between, you want numbers that are
more than 50 AND less than 80, the opposite of what was asked about!

-- Brett
                                          http://www.chapelperilous.net/
------------------------------------------------------------------------
A penny saved is ridiculous.




-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to