Sha256: 238035c8ff7ee6c2cf41553d1bf0bffd7845a6e91b75fa1ffac3e9c0db3cf8b3
Contents?: true
Size: 425 Bytes
Versions: 7
Compression:
Stored size: 425 Bytes
Contents
#!/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
Version data entries
7 entries across 7 versions & 1 rubygems