You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A performance regression introduced in Perl 5.28 causes this script to execute ~20x-40x slower on Windows:
use strict;
use warnings;
use feature 'say';
use Time::HiRes 'time';
my $x = 'a' x 1e6;
my $y = 'b' . $x;
my $t = time;
$x =~ s/./$&-/g;
say time - $t;
$t = time;
$y =~ s/./$&-/g;
say time - $t;
say $^V;