in reply to Re^2: EXPORT_OKed function refusing to import
in thread EXPORT_OKed function refusing to import

use Foo qw( bar );

is a shortcut for

BEGIN { require Foo; Foo->import(qw( bar )); }