Help for this page

Select Code to Download


  1. or download this
    unless (eval { ...; 1 }) {
      ... # handle the error in $@
    }
    
  2. or download this
    eval { ...; 1 } or return undef;
    
    return undef unless eval { ...; 1 };