Help for this page

Select Code to Download


  1. or download this
        bless($self, "Adult");
    
    should be...
    
        bless($self, "Person::Adult");
    
  2. or download this
    my $a = Person::Adult->new(NAME => 'the hard way');
    $a->sayHi();