Help for this page

Select Code to Download


  1. or download this
    local $@;
    my $book = eval {
      Spreadsheet::Read->new($file);
    };
    
  2. or download this
    local $@;
    my $book;
    ...
      $book = Spreadsheet::Read->new($file);
      1;
    };
    
  3. or download this
    local $@;
    my $ok = eval {
      doSomethingButDontWantReturnValButCouldDie() or undef;
      1;
    };
    
  4. or download this
    local $@;
    my $ok = eval {
      doSomethingButDontWantReturnValButCouldDie();
      1;
    } or undef;