Tagged Questions
4
votes
1answer
152 views
Do I need Exporter if I'm going for pure OO in Perl?
The docs (Exporter and perlmodlib) say:
As a general rule, if the module is
trying to be object oriented then
export nothing.
But then perlmodlib also says:
Standard, bundled modules are ...
1
vote
2answers
263 views
Why can't I call my exported subroutine in my Perl program?
I am new to Perl and I face following issue, having no clue why following is not working.
My Perl module contains:
package PACK2;
use Exporter;
@ISA = ('Exporter');
@EXPORT_OK=('whom');
sub why(){
...
0
votes
1answer
347 views
Export a hash from a module to a script
refering back to this thread, I'm strugglying with the way how to export datas from my module. One way is working but not the other one which I would like to implement.
The question is why the ...