Help for this page

Select Code to Download


  1. or download this
    sub new {
        my ($class) = @_;
        return(bless(dog->new(),$class));
    }
    
  2. or download this
                sub new {
                        my $type = shift;
    ...
                        $self->{'biz'} = 11;
                        bless $self, $type;
                }
    
  3. or download this
      DB<3> p UNIVERSAL::isa($self,'Bar');
    1