Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^2: What is module? Difference between module and package?

by liz (Monsignor)
on Oct 28, 2005 at 11:54 UTC ( [id://503625]=note: print w/replies, xml ) Need Help??


in reply to Re: What is module? Difference between module and package?
in thread What is module? Difference between module and package?

Please note that package is scoped:
package Foo; print __PACKAGE__,$/; { package Bar; print __PACKAGE__,$/; } print __PACKAGE__,$/; __END__ Foo Bar Foo
with the default scope being the file, or course (although you rarely have to think about things like that, fortunately).

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (4)
As of 2024-04-19 23:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found