Thursday, April 14, 2011

Perl for the day: Hello World

Download perl for Windows from the following URL and install it.

http://www.activestate.com/activeperl/downloads

-- hello.pl --
use strict;
use warnings;

print("Hello World\n");

No comments:

Post a Comment