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