Packages: added Perl package.

This commit is contained in:
Andrei Belov
2018-02-07 17:26:37 +03:00
parent 7830026368
commit 539caf0946
12 changed files with 200 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
#!/usr/bin/env perl
use Data::Dumper;
my $app = sub {
my $env = shift;
return [
'200',
[ 'Content-Type' => 'text/plain' ],
[ "Hello from Unit, Perl $^V, environment:\n\n", Dumper($env) ],
];
};