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