[Omaha.pm] Explaining Web Programming via Plack

Jay Hannah jay.hannah at iinteractive.com
Fri Apr 13 10:27:46 PDT 2012


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' ]
    ];
};




More information about the Omaha-pm mailing list