Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use subs 'die'; 
    ...
    
    #calls our overriden die
    die "hello";
    
  2. or download this
    Mon May 28 10:41:21 2001: hello world
    goodbye
    goodbye cruel world
    
  3. or download this
    #mydie.pm
    #a package to export a global die, overriding the perl builtin
    ...
        print "goodbye cruel world\n";
        CORE::die $_[0];
    }
    
  4. or download this
    #!/usr/local/bin/perl
    use warnings;
    ...
    print "hello world\n";
    #calls the die exported by mydie.pm
    die "argh!!!";
    
  5. or download this
    hello world
    goodbye cruel world
    argh!!! at mydie.pm line 20.