Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re^4: What is true and false in Perl? (undef,undef)

by amartyaj (Initiate)
on Nov 22, 2013 at 18:00 UTC ( [id://1063972]=note: print w/replies, xml ) Need Help??


in reply to Re^3: What is true and false in Perl? (undef,undef)
in thread What is true and false in Perl?

Hi can somebody explain to me the reason behind the following: test.pl: #!/usr/bin/perl my $a = (1==0); print "__".ref($a)."__\n"; Output: ____
  • Comment on Re^4: What is true and false in Perl? (undef,undef)

Replies are listed 'Best First'.
Re^5: What is true and false in Perl? (undef,undef)
by davido (Cardinal) on Nov 22, 2013 at 18:11 UTC

    What do you think ref does?

    In your example code, $a doesn't contain a reference. It contains a false value. ref does exactly this: "Returns a non-empty string if EXPR is a reference, the empty string otherwise."


    Dave

      Got it. Thanks a lot Dave.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (None)
    As of 2024-04-25 04:23 GMT
    Sections?
    Information?
    Find Nodes?
    Leftovers?
      Voting Booth?

      No recent polls found