Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
      print "Empty Hash\n";
    }
    qux('test');
    
  2. or download this
    $ perl crap2.pl 
    Hello Nurse!
    ...
            main::qux('test') called at crap2.pl line 31
     at crap2.pl line 25
            main::qux('test') called at crap2.pl line 31
    
  3. or download this
    ...
    eval { 
    ...
    };
    return if $@;
    ...
    
  4. or download this
    ...
    eval {
    ...
    };
    return if $@;
    ...