7 lines
111 B
Perl
7 lines
111 B
Perl
|
#!/usr/bin/perl -w
|
||
|
|
||
|
use strict;
|
||
|
|
||
|
print "Content-Type: text/plain\n";
|
||
|
print "\n";
|
||
|
print "hello, world!\n";
|