Help for this page

Select Code to Download


  1. or download this
        /(lib path)/dirAAA/ModuleA.pm
        /(lib path)/dirBBB/ModuleB.pm
    
  2. or download this
        use lib ???;
        use ModuleB;
    
  3. or download this
    <code>
    use lib '../dirAAA/'
    
  4. or download this
    use FindBin;
    use lib "$FindBin::Bin/../dirAAA/"