in reply to Clarify My doubt on #!/usr/local/bin/perl
Is it necessary to put this line while doing code in windows platform.It is not necessary. The perl interpreter to be used in Windows is determined by the file associations of the system. But it is not completely useless. You can pass switches to perl via the shebang line like
which switches warnings on.#!perl -w
|
|---|