262fe72e3e
[BENCHMARK] * NEW: Add a new string benchmark.
16 lines
191 B
Raku
Executable file
16 lines
191 B
Raku
Executable file
#!/usr/bin/perl -w
|
|
|
|
my $str = "";
|
|
|
|
for (my $i = 0; $i < 1000000; $i++)
|
|
{
|
|
for (my $j = 65; $j < 91; $j++)
|
|
{
|
|
$c = chr($j);
|
|
$str .= ".(" . $c . ")";
|
|
}
|
|
}
|
|
|
|
print length($str);
|
|
print "\n";
|
|
|