Help for this page

Select Code to Download


  1. or download this
    $f = eval { loadPari($meth) };
    return $f if defined $f;
    return;
    
  2. or download this
    $SIG{__DIE__} = sub {
      # propagate the die if we're under an eval
      (defined($^S) && !$^S) or die(@_);
      # now do the real stuff
      ...
    };