in reply to mention a non-installed module in script
eval BLOCK catches *run time* exceptions, but a use statement executes at *compile time*, and using a non existent module causes your program to terminate before it can enter runtime. A BEGIN block executes before the rest of the file even compiles.
|
|---|