#!/usr/local/bin/perl

print "Content-type: text/html\n\n";
print "<HTML>\n";
print "<HEAD><TITLE>Very Simple CGI</TITLE></HEAD>";
print "<BODY>\n";
print "<H1>CGI Sample</H1>\n";
print "This is a demonstration of what you can do with simple Perl.<BR>";
print "You'll need another whole book to make it interactive.";
print "But this is a start.\n";
print "</BODY>\n";
print "</HTML>\n";
