Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 449bc2c52128e77c3c0d58150afb6f4e > files > 109

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

my $app = sub {
    my $env = shift;

    return sub {
        my $respond = shift;
        my $w = $respond->([ 200, ['X-Foo' => 'bar', 'Content-Type' => 'text/plain'] ]);
        for (1..5) {
            sleep 1;
            $w->write(time . "\n");
        }
    };
};