First Line of Perl Code - Perl Views : 109
Tagged in : Perl
0 0
Send mail

First Line of Perl Code


The first line of a perl program should contain the path location where perl is to be found on your system.

#!/usr/bin/perl

You can add the -w switch to provide extra warning messages.

#!/usr/bin/perl -w
By Geethalakshmi, On - 2010-09-17



    Login to add Comments .