Help for this page

Select Code to Download


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