Help for this page

Select Code to Download


  1. or download this
    $self->can("SUPER::method_name");
    
  2. or download this
    package UnloadedObject;
    
    ...
    
      goto &$sub;
    }
    
  3. or download this
    my $me = $people->getByName("fergal");
    my $name = $me->Name; # nothing special
    my $boss = $me->Boss; # still nothing special
    my $boss_name = $boss->Name; # bang! magic things happen and suddenly 
    +$boss has all it's data loaded