in reply to Re: What is module? Difference between module and package?
in thread What is module? Difference between module and package?
with the default scope being the file, or course (although you rarely have to think about things like that, fortunately).package Foo; print __PACKAGE__,$/; { package Bar; print __PACKAGE__,$/; } print __PACKAGE__,$/; __END__ Foo Bar Foo
|
---|