Help for this page

Select Code to Download


  1. or download this
    package Foo::Bar;
    
    ...
    
       return $self->{_name};
    }
    
  2. or download this
    my $bar = Foo::Bar->new( name => 'Bob Lambert' );
    
    print "Name of my object " . $bar->name    . "\n"; # method call
    print "Name from my hash " . $bar->{_name} . "\n"; # hash key