Help for this page

Select Code to Download


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