InterviewSolution
| 1. |
How To Turn On Perl Warnings? Why Is That Important? |
|
Answer» Perl is very forgiving of strange and sometimes wrong CODE, which can mean hours spent searching for bugs and weird results. Turning on warnings helps uncover common mistakes and strange places and save a lot of debugging time in the long RUN. There are various ways of turning on Perlwarnings: * For Perl one-liner, use -w option on the command line. Perl is very forgiving of strange and sometimes wrong code, which can mean hours spent searching for bugs and weird results. Turning on warnings helps uncover common mistakes and strange places and save a lot of debugging time in the long run. There are various ways of turning on Perlwarnings: * For Perl one-liner, use -w option on the command line. |
|