Help for this page

Select Code to Download


  1. or download this
    package A;
    use Data::Dumper;
    ...
    use strict;
    use base 'A';
    print Dumper([1]);
    
  2. or download this
    
    sub AUTOLOAD {
    ...
        croak("Invalid method $method");
    }