Help for this page

Select Code to Download


  1. or download this
    sub Module::That::Dies::die_here { return 0 }
    eval {
    ...
    } or do {
        warn "Error from Module::That::Dies:\n$@\n";
    };
    
  2. or download this
    eval {
        ...
    ;1 } or do { # catch
        ...
    }