Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^5: Learning Programming, desperately need to know what information is contained in scalar variables

by AnomalousMonk (Archbishop)
on Jul 20, 2020 at 17:09 UTC ( [id://11119556]=note: print w/replies, xml ) Need Help??


in reply to Re^4: Learning Programming, desperately need to know what information is contained in scalar variables
in thread Learning Programming, desperately need to know what information is contained in scalar variables

Evaluating two undef values for string equality yields a true result. undef is temporarily promoted to "" (the empty string) in string context. If warnings are enabled, warnings are emitted.

c:\@Work\Perl\monks>perl -le "use strict; use warnings; ;; use Data::Dump qw(dd); ;; my ($value, $alice, $bob); ;; $value = $alice eq $bob; dd 'result of comparison of undefined values', $value; " Use of uninitialized value in string eq at -e line 1. Use of uninitialized value in string eq at -e line 1. ("result of comparison of undefined values", 1)


Give a man a fish:  <%-{-{-{-<

  • Comment on Re^5: Learning Programming, desperately need to know what information is contained in scalar variables
  • Select or Download Code

Log In?
Username:
Password:

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

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

    No recent polls found