Sophie

Sophie

distrib > Mageia > 6 > x86_64 > media > core-updates > by-pkgid > 8952bf99e053a3f2fd32087e96266c63 > files > 114

perl-Plack-1.4.700-1.1.mga6.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" ] ];
};