#!/usr/local/bin/perl

# hello.pl - my first perl script

print "Content-type: text/html\n\n";

print <<"EOF";
<HTML>
<HEAD>
<TITLE>Hello, world!</TITLE>
</HEAD>
<BODY>
<H1>Hello World</h1>
</body>
</html>
EOF


