Help for this page

Select Code to Download


  1. or download this
    sub new
    {
        my $class = shift;
        return bless($Person::list,shift);
    }
    
  2. or download this
    sub new
    {
        my $class = shift;
        return bless({},$class);
    }
    
  3. or download this
    sub name 
    {
        my $self = shift;
        $self->{NAME} = shift;
    }
    
  4. or download this
    my $person = new Person;
    $person->name('Me');