- or download this
if(require "module/that/does/not/exist") {
print "loaded module ok\n";
}else{
print "could not load module $@\n";
}
- or download this
eval {
require "module/that/does/not/exist";
}
- or download this
print petrol "hello there !";
- or download this
eval {
print petrol "hi";
}