in reply to What should I call my module?
What should I call it? HTML::Entity-Reference? But does the dash cause problems?If one does:
this is equivalent to:use HTML::Entity-Reference;
CamelCase is the usual convention when having module names composed of multiple words:BEGIN { require HTML::Entity; HTML::Entity->import("-Reference"); }
An underscore works as well:package HTML::EntityReference;
package HTML::Entity_Reference;
|
|---|