[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Omaha.pm] Explaining Web Programming via Plack



http://blogs.perl.org/users/ovid/2012/04/explaining-web-programming-via-plack.html

:)

j






-----
Plack 'Hello World':

my $app = sub {
    return [
        200, 
        [ 'Content-Type' => 'text/plain' ],
        [ 'Hello World' ]
    ];
};