- or download this
$self->can("SUPER::method_name");
- or download this
package UnloadedObject;
...
goto &$sub;
}
- 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