#!/usr/bin/perl -wT ## ## CGI Application Hello World ## use strict; use lib qw(.); use Hello; my $helloworld = Hello->new(); $helloworld->run();