Help for this page

Select Code to Download


  1. or download this
    package MyClass;
    use strict;
    ...
    }
    
    1;
    
  2. or download this
    use MyClass;
    use strict;
    ...
    $string = ref($pack) . "::$string";
    no strict 'refs';
    &$string($pack);
    
  3. or download this
    package MySubClass;
    use strict;
    ...
    # All implementation is done by the superclass
    
    1;
    
  4. or download this
    use MySubClass;
    use strict;
    ...
    $string = ref($pack) . "::$string";
    no strict 'refs';
    &$string($pack);