scmuser created the topic: use Vs require in perl
Hi,
Whats difference between “use” and “require” in perl?
rajeshkumar replied the topic: Re: use Vs require in perl
use is done at ‘compile-time’ and require is done at ‘run-time’ (ie can conditionally load modules)
Regards,
Rajesh Kumar
Twitt me @ twitter.com/RajeshKumarIn
rajeshkumar replied the topic: Re: use Vs require in perl
More…
use is a pre-built in function in perl to Imports some semantics into the current package from the named module, generally by aliasing certain subroutine or variable names into your package such as..
* use Module VERSION LIST
* use Module VERSION
* use Module LIST
* use Module
* use VERSION
More info.. perldoc.perl.org/functions/use.html
Regards,
Rajesh Kumar
Twitt me @ twitter.com/RajeshKumarIn
- Best AI tools for Software Engineers - November 4, 2024
- Installing Jupyter: Get up and running on your computer - November 2, 2024
- An Introduction of SymOps by SymOps.com - October 30, 2024