- or download this
use constant haveMod => eval { require mod; };
- or download this
my $haveMod;
BEGIN {
...
}
use constant haveMod => $haveMod;
- or download this
BEGIN {
...[ something complicated ]...
require constant;
import constant haveMod => ...;
}