Re: Q: cannot use base while Exporting ?

2007-07-21 Thread Jack Minoshima
Paul and Paul, Thank you very much ! I heard that OO module usually doesn't export anything, but I just wanted the difference between use and use base. Now almost everything is clear for me ! Just one thing, this code seems to work.

Re: Q: cannot use base while Exporting ?

2007-07-19 Thread Paul Lalli
On Jul 18, 1:20 am, [EMAIL PROTECTED] (Jack Minoshima) wrote: Hi. Please allow me to ask another silly question. I wrote the program and it works fine. Animal.pm package Animal; use Exporter; @ISA = qw(Exporter);

Re: Q: cannot use base while Exporting ?

2007-07-18 Thread Paul Johnson
On Wed, Jul 18, 2007 at 02:20:15PM +0900, Jack Minoshima wrote: Hi. Please allow me to ask another silly question. I wrote the program and it works fine. Animal.pm package Animal; use Exporter; @ISA = qw(Exporter);

Q: cannot use base while Exporting ?

2007-07-17 Thread Jack Minoshima
Hi. Please allow me to ask another silly question. I wrote the program and it works fine. Animal.pm package Animal; use Exporter; @ISA = qw(Exporter); @EXPORT = qw(speak); sub speak { print I speak!\n; } 1;