Help for this page

Select Code to Download


  1. or download this
    package DO_STUFF.pm;
    
    ...
      eval "use $conf;";
    }
    do_stuff....etc...
    
  2. or download this
      my $conf = determine_conf_module_name();
      eval "use $conf;";
    
  3. or download this
    package DO_STUFF.pm;
    
    ...
      eval "use $conf;";
    ...
    }