programming-examples/perl/CGI/Hello World in Function-Oriented Fashion.pl
2019-11-15 12:59:38 +01:00

11 lines
160 B
Perl

#!/usr/bin/perl -T
use strict;
use CGI ':standard';
print header;
print start_html('Hello World');
print h1('Hello World');
print end_html();
exit;