Re: Code organization .pm

2011-09-05 Thread Shawn H Corey
On 11-09-05 02:12 AM, Shlomi Fish wrote: I should note that you may be prematurely optimising here, so you shouldn't worry about getting a lot of code compiled, until you are sure it's the bottleneck: http://c2.com/cgi/wiki?PrematureOptimization I have to agree with Shlomi. I also think that

Re: Code organization .pm

2011-09-04 Thread Shlomi Fish
Hi Ron, On Sun, 4 Sep 2011 15:28:17 -0700 (PDT) Ron Weidner wrote: > I have a class named Widget in a file named Widget.pm.  I have another class > named Table in a file called Table.pm.  Table extends Widget. > > --- > > package Widget; > #file Widget.pm > > #insert a bunch of methods...   >

Code organization .pm

2011-09-04 Thread Ron Weidner
I have a class named Widget in a file named Widget.pm.  I have another class named Table in a file called Table.pm.  Table extends Widget. --- package Widget; #file Widget.pm #insert a bunch of methods...   --- package Table; #file Table.pm use Widget; @ISA=("Widget"); #insert several method