Help for this page

Select Code to Download


  1. or download this
    package AA::BB;
    
    ...
    }
    
    1;
    
  2. or download this
    #! /usr/bin/perl -w
    use strict;
    ...
    use AA::BB;
    
    eval { die AA::BB->new; };
    
  3. or download this
    % perl -MO=Deparse testdie.pl
    eval {
        'AA::BB'->CORE::GLOBAL::die->new;
    };