- or download this
package MyModule;
use Importer;
1;
- or download this
package Importer;
...
}
1;
- or download this
use strict;
no strict 'refs';
...
require 'MyModule.pm';
1;
- or download this
my $symtab = *{'main::MyModule::'}{HASH};
- or download this
require 'MyModule.pm';
- or download this
require MyModule;