Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    
    my $rex = Animal::Dog->new();
    print Dumper($rex);
    
  2. or download this
    package Animal;
    
    ...
    } 
    
    1;
    
  3. or download this
    package Animal::Dog;
    use base "Animal";
    ...
    } 
    
    1;
    
  4. or download this
    $VAR1 = bless( {
                     'domesticated' => 1,
                     'need_oxygen' => 1
                   }, 'Animal::Dog' );