Perl scripts

Here are some of my own Perl scripts.

test_cgi.pl

The purpose of this script, is to see if the cgi module is installed. It is also my first perl script :D

#!/usr/bin/perl

use strict;
use warnings;
use CGI;

my $cgi = CGI->new();

print $cgi->header;

print <<'END';
<P>Yes! The <CODE>cgi</CODE> module is installed.</P>
END
See it in action! Or go back to the homepage?
made with <3 by me, dean