Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more
12345678910111213 #!perl## Compare and contrast to app.feersum#my $counter = 0;sub { my $env = shift; my $n = $counter++; return [200, [ 'Content-Type' => 'text/plain', 'Connection' => 'close', ], ["Hello customer number 0x",sprintf('%08x',$n),"\n"]];};
#!perl
#
# Compare and contrast to app.feersum
my $counter = 0;
sub {
my $env = shift;
my $n = $counter++;
return [200, [
'Content-Type' => 'text/plain',
'Connection' => 'close',
], ["Hello customer number 0x",sprintf('%08x',$n),"\n"]];
};