in reply to EXPORT_TAGS does not export a defined tag

Hello perlpipe,

When using a tag in a use directive, you have to prefix it with a colon:

use tmod qw( :tag_v0 ); # ^

See Exporter#Specialised-Import-Lists.

BTW, the Perl convention is to capitalise the first letter of a module name unless the module is functioning as a pragma. See perlmod#Perl-Modules.

Hope that helps,

Athanasius <°(((><contra mundum Iustus alius egestas vitae, eros Piratica,

Replies are listed 'Best First'.
Re^2: EXPORT_TAGS does not export a defined tag
by Anonymous Monk on Nov 30, 2017 at 15:28 UTC

    Thanks everyone for your answers. I knew the answer was straight forward and I just couldn't see it.