#!/usr/bin/perl
use strict;
sub {
my $env = shift;
return [
'200',
[ 'Content-Type' => 'text/plain' ],
[ "Hello World\n" ],
];
}
#!/usr/bin/perl
use strict;
sub {
my $env = shift;
return [
'200',
[ 'Content-Type' => 'text/plain' ],
[ "Hello World\n" ],
];
}