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