On Mon, 17 Sep 2001, David Draley wrote:

> how would I write an unless statement that is looking for the values
> inbetween two numbers?
>
> unless (50 < $x > 80)

print '' unless( ($x > 50) and ($x < 80) );

-- Brett
                                          http://www.chapelperilous.net/
------------------------------------------------------------------------
I need another lawyer like I need another hole in my head.
                -- Fratianno



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

Reply via email to