#!/usr/bin/perl
# The above line must contain the path to your Perl interpreter.
# If you are not sure what this is, on most unix systems, you may
# use the command "whereis perl".
       
print "Content-type: text/html\n\n";
print "Hello World!!\n";
       
exit;
