Help for this page

Select Code to Download


  1. or download this
    if (eval { require "module/that/does/not/exist"; 1 } ) {
       print "loaded module ok\n";
    } else {
       print "could not load module: $@\n";
    }
    
  2. or download this
    if (eval { require "module/that/does/not/exist" } ) {
       print "loaded module ok\n";
    } else {
       print "could not load module: $@\n";
    }