#!/usr/local/bin/perl #hello.pl: a simple Perl CGI example #Note that we output two carriage returns after the #content type. This is very important as it marks #the end of the CGI "header" and the beginning of #the document to be sent to the browser. print "Content-type: text/html\n\n"; # Output a proper HTML document, with # and tags. */ print "\n"; print "Hello, World\n"; print "\n"; print "\n"; print "

Hello, World

\n"; print "\n";