Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Re: Uninitialized value

by CharlesClarkson (Curate)
on May 11, 2002 at 13:05 UTC ( [id://165869]=note: print w/replies, xml ) Need Help??


in reply to Re: Uninitialized value
in thread Uninitialized value

Your missing somthing. Test it.

my $junk; print 1 + ($junk || 0);
returns 1, no warnings.
my $junk = 11; print 1 + ($junk || 0);
returns 12, no warnings.
my $junk = 0; print 1 + ($junk || 15);
returns 16, no warnings, not 1 as ravendarke wanted.

HTH,
Charles K. Clarkson
--
Head Bottle Washer,
Clarkson Energy Homes, Inc.

Replies are listed 'Best First'.
A reply falls below the community's threshold of quality. You may see it by logging in.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://165869]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (6)
As of 2024-04-16 05:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found