- or download this
#/user/bin/perl -wT
use strict;
use CGI ':all';
...
start_html('Test'),
'Hello, World!',
end_html();
- or download this
<HTML>
<HEAD>
<TITLE>Test</TITLE>
...
</form>
</BODY>
</HTML>
- or download this
> perl -wT hello.cgi ''
Content-Type: text/html
...
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<HTML><HEAD><TITLE>Test</TITLE>
</HEAD><BODY>Hello, World!</BODY></HTML>