On 11-01-16 03:03 PM, David Christensen wrote:
Bonus question:
use Foo qw( :all );
What is the best way to accomplish the goal?
Fill in @EXPORT and @EXPORT_OK as needed.
# --------------------------------------
# Exports
use base qw( Exporter );
our @EXPORT = qw( );
our @EXPORT_OK = qw( );
our %EXPORT_TAGS = (
all => [ @EXPORT, @EXPORT_OK ],
);
--
Just my 0.00000002 million dollars worth,
Shawn
Confusion is the first step of understanding.
Programming is as much about organization and communication
as it is about coding.
The secret to great software: Fail early & often.
Eliminate software piracy: use only FLOSS.