Why we use "use lib $path"?
Answer / guest
If we are trying to add a module or library files in our
program using require or use statement then it will search
that module or library files in the Perl's default search path.
The statement use lib is used to add the directories to
default search path.
So if the module or library file is not located in the
Perl's default search path then it will find the library
files in the path we have given with the use lib $path.
| Is This Answer Correct ? | 3 Yes | 0 No |
What is the difference between having a parenthesis after module name and without parenthsis after module name?? i.e Package::Module(); and Package::Module;
Explain substr function in perl?
What are the different types of perl operators?
Define operators used in perl?
What is caller function in perl?
How would you trap error occurred in the perl program/file?
what are prefix dereferencer and list them out?
Explain the meaning of subroutine?
What value is returned by a lone `return;’ statement?
What is the difference between single (') and double (") quote in a string in perl?
What are the advantages of c over Perl?
What does read () command do?