Help for this page

Select Code to Download


  1. or download this
    package abc::abcUtil;
    require "common.pl";
    ...
       # PERL_DEBUG is in common.pl
       ..
    }
    
  2. or download this
    require "common.pl";
    use abc::abcUtil;
    sub func {
        abc::abcUtil::check();
    }
    
  3. or download this
    #require "common.pl";
    use abc::abcUtil;
    sub func {
        abc::abcUtil::check();
    }