in reply to Template to create modules
The hash, `%EXPORT_TAGS`, should be included, especially the tag `:all`.
# -------------------------------------- # Exports use Exporter qw( import ); our @EXPORT = qw( ); our @EXPORT_OK = qw( ); our %EXPORT_TAGS = ( all => [ @EXPORT, @EXPORT_OK ], );
|
|---|