Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 6410479304d8e497e6ebcf2b088021d0 > files > 117

perl-Plack-1.2.900-2.1.mga4.noarch.rpm

#!/usr/bin/perl
unless (caller) {
    require Plack::Runner;
    Plack::Runner->run(@ARGV, $0);
}

my $handler = sub {
    return [ 200, [ "Content-Type" => "text/plain", "Content-Length" => 11 ], [ "Hello World" ] ];
};