Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Burned by precedence rules

by vrk (Chaplain)
on Dec 23, 2008 at 13:15 UTC ( [id://732286]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub done {
        my $self = shift;
        return not $self->foo and not $self->bar; # gotcha!
    }
    
  2. or download this
        (return not $self->foo) and not $self->bar;
    
  3. or download this
    sub done {
        my $self = shift;
        return !$self->foo && !$self->bar; 
    }
    
  4. or download this
        my $bool = 1 and 0;
        # $bool == 1 and $_ == 0; may not be what you expect!
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlmeditation [id://732286]
Approved by Corion
Front-paged by friedo
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (4)
As of 2024-03-28 07:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found