Help for this page

Select Code to Download


  1. or download this
    eval {
         ... some code doing somethin ...
    ...
    if ($@) {
         print "I caught a call to die: $@";  
    }
    
  2. or download this
    #!/usr/bin/perl -Tw
    use strict;
    ...
            print "We caught a call to die: $@\n";
        }
    }