Help for this page

Select Code to Download


  1. or download this
    package Variant1::RootClass;
    
    ...
    }
    
    1;
    
  2. or download this
    use Variant1::RootClass;
    
    ...
    }
    
    1;
    
  3. or download this
    use Variant1::DerivedClass;
    
    ...
    }
    
    1;
    
  4. or download this
    package Variant2::RootClass;
    
    ...
    }
    
    1;
    
  5. or download this
    use Variant2::RootClass;
    
    ...
    }
    
    1;
    
  6. or download this
    use Variant2::DerivedClass;
    
    ...
    }
    
    1;
    
  7. or download this
    #!/usr/bin/perl
    
    ...
    
    print $obj2->set_derived_entry3(27);
    print Dumper $obj2;