Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: How to access main package global vars in modules

by philipbailey (Curate)
on Jul 07, 2011 at 19:20 UTC ( [id://913246]=note: print w/replies, xml ) Need Help??


in reply to How to access main package global vars in modules

There are several alternative one line changes that do what you ask, such as:

  • Declare $glbA and $glbB with our in functions.pl
  • Refer to those variables in functions.pl with the fully qualified $main::glbA and $main::glbB
  • no strict "vars"

But none of the above is recommended. You would be much better in most scenarios to make functions.pl a package, and pass lexical variables as parameters to its functions.

Log In?
Username:
Password:

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

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

    No recent polls found