Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Module usage

by eye (Chaplain)
on Feb 26, 2009 at 09:59 UTC ( [id://746502]=note: print w/replies, xml ) Need Help??


in reply to Module usage

Including a module with "use" reads the module and makes it available to your program within its own namespace. By default, many modules will export symbols (variables, functions, methods, etc.) into the "main::" namespace. This allows you access to these symbols without prefixing them with their proper namespace. Specifying a list of symbols with the "use" statement overrides the choice of symbols to export. When this list is empty, no symbols are exported. The symbols are still accessible by prefixing them with the namespace of the module.

Replies are listed 'Best First'.
Re^2: Module usage
by rir (Vicar) on Feb 27, 2009 at 03:21 UTC
    By default, many modules will export symbols ... into the "main::" namespace.

    That is incorrect, but it is often what happens because the use Module statement is in the package main. The symbols are exported to into the current namespace.

    Be well,
    rir

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (2)
As of 2024-04-19 20:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found