Help for this page

Select Code to Download


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