Help for this page

Select Code to Download


  1. or download this
    eval {die;};
    if (my $e = $@) { # <--- secure...
        warn "Got the exception '$e'!";
        exit(0);
        }
    
  2. or download this
    eval {exit;};
    if (my $e = $@) { # <--- secure...
        warn "Got the exception '$e'!";
        exit(0);
        }