Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

#!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"]];
};