in reply to RE: RE: modules out of the box
in thread modules out of the box
A little bit of runtime launch cost can provide a ton of flexibility for your installers. If you want, you can even edit this at compile time into a simple use File::Spec, and avoid the runtime cost.BEGIN { for (qw(Cons::Spec File::Spec)) { eval "use $_"; last unless $@; } die "Cannot find Cons::Spec or File::Spec" if $@; }
-- Randal L. Schwartz, Perl hacker
|
|---|