in reply to Why is @flds not imported?

I am not a modules expert by any means, but all mine include

our @ISA= qw( Exporter );

Replies are listed 'Best First'.
Re^2: Why is @flds not imported?
by ikegami (Patriarch) on Sep 24, 2017 at 23:23 UTC

    Yeah, it makes no sense to inherit from Exporter, so

    use Exporter qw( import );

    was added as an alternative to

    use Exporter qw( ); push our @ISA, qw( Exporter );

    back in 2004.

Re^2: Why is @flds not imported?
by Anonymous Monk on Sep 24, 2017 at 22:08 UTC
    "use Exporter 'import';" is good enough