Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Re: Use of uninitialized value in concatenation (.) or string

by P0w3rK!d (Pilgrim)
on May 20, 2003 at 15:18 UTC ( [id://259481]=note: print w/replies, xml ) Need Help??


in reply to Re: Use of uninitialized value in concatenation (.) or string
in thread Use of uninitialized value in concatenation (.) or string

Read the code again. use strict; is everywhere.
Thanks :)
  • Comment on Re: Re: Use of uninitialized value in concatenation (.) or string

Replies are listed 'Best First'.
Re: Re: Re: Use of uninitialized value in concatenation (.) or string
by KPeter0314 (Deacon) on May 20, 2003 at 22:21 UTC
    What is meant is that use strict; requires that variables be initialized.

    To quote from the perldoc:strict where strict vars is implied by not specifying what to be strict about:

    "strict vars" This generates a compile-time error if you access a variable that wasn't declared via "our" or "use vars", localized via "my()", or wasn't fully qualified.
    The use vars qw($OURVAR) = (); pragma actually declares the variable $OURVAR and initializes it to a known null value instead of leaving it uninitialized. Perl cares about the difference.

    -Kurt

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (5)
As of 2024-04-20 00:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found