Home Apache PHP Ubuntu MySQL Linux HTML Win CSS Perl Javascript Rants Retro
 
Print This Page
Date Posted: Thursday 24th of November 2011 | Category: Perl
Hello World in Perl. First Perl program.
The simple script below prints the message Hello World using perl. Perl may be old, but once you start learning it, there is so much more you can do with it over PHP.

Is Perl still worth learning in 2011?
If Perl provides you with the functions you need, then it is definately worth learning.

Make sure that #!/usr/bin/perl points to the correct path on your machine or webspace.

#!/usr/bin/perl
print "Hello World.\n";