Help for this page

Select Code to Download


  1. or download this
    sub name {
        my $self = shift;
    # the following is the broken line
    ...
        }
        return $self->{Name};
    }
    
  2. or download this
    my $a = new HIT;
    my $b = new HIT;
    
    print $a->Name('Corwin, Prince of Amber');
    print $b->Name();