programming-examples/perl/CGI/Set content type.pl

7 lines
111 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
#!/usr/bin/perl -w
use strict;
print "Content-Type: text/plain\n";
print "\n";
print "hello, world!\n";