Help for this page

Select Code to Download


  1. or download this
    use B;
    sub LogMe{
    ...
            B->new;
            B->_func2;
    };
    
  2. or download this
    package commonRoutine;
    
    ...
    }
    
    1
    
  3. or download this
    use A;
    use commonRoutine;
    ...
        A->new;    
        commonRoutine->new;
    }
    
  4. or download this
    package A;
    use strict;
    ...
    }
    
    1
    
  5. or download this
    package B
    
    ...
    }
    
    1