Richie Bendall c8fc6cd6d3
Meta tweaks
Signed-off-by: Richie Bendall <richiebendall@gmail.com>
2021-03-15 16:18:40 +13:00

10 lines
424 B
Perl

#!/usr/local/bin/perl -w
use CGI; # load CGI routines
$q = CGI->new; # create new CGI object
print $q->header, # create the HTTP header
$q->start_html('Hello World'), # start the HTML
$q->h1('Hello World'), # level 1 header
$q->end_html; # end the HTML
# http://perldoc.perl.org/CGI.html