Help for this page

Select Code to Download


  1. or download this
    if (condition) {
       require Foo::Bar;
    }
    
  2. or download this
    eval {
       require Foo::Bar;
    ...
    if ($@) {
       require Foo::Baz;
    }