scmuser created the topic: Spit out warnings on uninitialized variables Perl
How to Spit out warnings on uninitialized variables in Perl?
rajeshkumar replied the topic: Re: Spit out warnings on uninitialized variables Perl
#!/usr/local/bin/perl -w
This will help you (really, it will force you) to write better, cleaner code. Adding the -w switch to the perl interpreter will cause it to spit out warnings on uninitialized variables – potential bugs.
Regards,
Rajesh Kumar
Twitt me @ twitter.com/RajeshKumarIn
Latest posts by Rajesh Kumar (see all)
- 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