in reply to Re^2: EXPORT_OKed function refusing to importin thread EXPORT_OKed function refusing to import
use Foo qw( bar ); [download]
is a shortcut for
BEGIN { require Foo; Foo->import(qw( bar )); } [download]