Help for this page

Select Code to Download


  1. or download this
    BEGIN {
       eval { require Cache::File }
    ...
       Cache::File->import(qw( ... ))
          if Cache::File->can("import");
    }
    
  2. or download this
    BEGIN {
       my @imports = qw( ... );
    ...
       eval "use Cache::File \@imports"
          or warn("Proceeding without Cache::File\n");
    }