Re: use vs. require in modules

2004-08-04 Thread Christopher J. Bottaro
heh, that was it, thanks a bunch. Randal L. Schwartz wrote: >> "Christopher" == Christopher J Bottaro >> <[EMAIL PROTECTED]> writes: > > Christopher> My::Utils > Christopher> use Exporter; > > Do you have "@ISA = Exporter" too? Much easier to write this as > > use base 'Export

Re: use vs. require in modules

2004-08-04 Thread Randal L. Schwartz
> "Christopher" == Christopher J Bottaro <[EMAIL PROTECTED]> writes: Christopher> My::Utils Christopher> use Exporter; Do you have "@ISA = Exporter" too? Much easier to write this as use base 'Exporter'; This might be why it needs to be require'd instead of use'd. -- Randal L. Sc