Module and file naming conventions

2005-04-01 Thread Brad.Carlson
Assuming you have a base class called Money and a subclass called Coin (where the Coin package declares @ISA = qw (Money)), what is the appropriate naming convention? Classes - Money and Money::Coin Files - Money.pm and Money/Coin.pm or Classes - Money and Coin Files - Money.pm and Coin.pm

Re: Module and file naming conventions

2005-04-01 Thread Chris Devers
On Fri, 1 Apr 2005 [EMAIL PROTECTED] wrote: Assuming you have a base class called Money and a subclass called Coin (where the Coin package declares @ISA = qw (Money)), what is the appropriate naming convention? Classes - Money and Money::Coin Files - Money.pm and Money/Coin.pm or