Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more
12345678910111213 my $r = shift;$r->send_http_header("text/plain");use strict;my $string = "";for ('A'..'Z') { $string .= $_ x 1000;}print $string;print "\nlength=", length($string) if $r->args;
my
$r
=
shift
;
->send_http_header(
"text/plain"
);
use
strict;
$string
""
for
(
'A'
..
'Z'
) {
.=
$_
x 1000;
}
print
"\nlength="
,
length
)
if
->args;