Help for this page

Select Code to Download


  1. or download this
    try {
        die "foobar\n";
    ...
    } catch {
        print "FAILED!\n";
    };
    
  2. or download this
    try( sub { die "Foobar"; print "OK"; },
         catch(sub { print "FAILED!\n"; })
       );