Help for this page

Select Code to Download


  1. or download this
    package Your::Module::Bytes;
    use bytes;
    do $INC{"Your/Module.pm"} . ".pl";
    1;
    
  2. or download this
    package Your::Module::Unicode;
    no bytes;
    do $INC{"Your/Module.pm"} . ".pl";
    1;
    
  3. or download this
    package Your::Module;
    sub import {
        # require the desired submodule
        # dispatch import to that submodule
    }