- or download this
package MyParent;
use strict;
...
sub parent_nifty_method2 {
... pah ...
}
- or download this
package MyParent::MyChild;
use strict;
...
sub child_method_b {
... incredibly cool stuff ...
}
- or download this
script_to_change_the_world.pl
...
$parentobject->child_method_a;
#Prints: Foo
- or download this
Can't locate object method "child_method_a" via package "MyParent" at
+script_to_change_the_world.pl line 14.