gambas-source-code/benchmark/string2.pl
gambas 262fe72e3e Add a new string benchmark.
[BENCHMARK]
* NEW: Add a new string benchmark.
2020-04-06 04:44:09 +02:00

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";