#!/usr/bin/perl
# Michael Tartaglia
require template;
template::startHTML("Program # 1","My First CGI Program");
print "
Yo.
\'sup?
\n",
"This is my first official PERL program.
\n",
"Okay, it doesn\'t do much. But what did you expect?
\n",
"Use the menu or your browser\'s back button.
\n";
template::endHTML();