in reply to Re^2: how to import a module var
in thread how to import a module var

I sometimes export a constructor. Why? Because sometimes, I rather write:
my $obj = new_feeble();
than
my $obj = Feeble->new();
The former requires less tokens. ;-)

And I'll export constants from my OO modules if I feel like it.

Perl --((8:>*