Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
If I'm happy to fully-qualify function names in my scripts, is there any harm in simply not using Exporter at all in my modules? For example, in my Frob.pm:
package Frob; use strict; use warnings; sub frobber { ... } 1;
Is there any functionality I'm missing out on, aside from not getting to use the unadorned symbol names in my script?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Any harm in not using Exporter at all in my procedural modules?
by ikegami (Patriarch) on Feb 23, 2010 at 16:38 UTC | |
by Anonymous Monk on Feb 23, 2010 at 17:00 UTC | |
|
Re: Any harm in not using Exporter at all in my procedural modules?
by jethro (Monsignor) on Feb 23, 2010 at 16:07 UTC |