in reply to The relation between a Package and a Module?

A module is just a package with some conventions to make it easy to use as a library. One convention is to use the package name as filename so the library can be found, and to use .pm as suffix. Also depending on the module something like Exporter is used to export some function- or variable-names into the namespace of the script that is using the module.

See perlmod for more information

  • Comment on Re: The relation between a Package and a Module?