Help for this page

Select Code to Download


  1. or download this
    eval { ... };
    if ($@) {
       ...
    }
    
  2. or download this
    eval { ...; 1 }
       or ...;
    
  3. or download this
    my $x = eval { ... };
    if ($@) {
       ...
    }
    
  4. or download this
    my ($x) = eval { ... }
       or ...;