in reply to Re^2: Use, Exporter, I'm Dizzy.
in thread Use, Exporter, I'm Dizzy.

Newer versions of Exporter recognize the first point and allow you to do

package MyTest; use strict; use warnings; BEGIN { our @EXPORT_OK = qw( testroutine ); } use Exporter qw( import ); # Rest of the code here ...

The BEGIN is there to address the second point.

Replies are listed 'Best First'.
Re^4: Use, Exporter, I'm Dizzy.
by caelifer (Scribe) on Feb 07, 2007 at 18:25 UTC
    Thanks. Good insight!