Help for this page

Select Code to Download


  1. or download this
    if(  need_module_X()  ) {
        if(  ! eval { require Module::X; 1 }  ) {
    ...
            Module::X->import(  qw( A B C )  );
        }
    }
    
  2. or download this
    BEGIN {
        if(  ! eval { require Module::X; 1 }  ) {
    ...
            Module::X->import(  qw( A B C )  );
        }
    }