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).