DEBSOURCES
Skip Quicknav
sources / libfcgi-engine-perl / 0.22-2 / t / scripts / baz.psgi
123456789
#!perl use strict; use warnings; my $app = sub { my $env = shift; [ 200, [ 'Content-type' => 'text/plain' ], [ 'hello world' ]] };