Skip to content

Instantly share code, notes, and snippets.

@cowens
Created December 2, 2009 16:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cowens/247337 to your computer and use it in GitHub Desktop.
Save cowens/247337 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
use strict;
use warnings;
use Benchmark;
my $r;
my @a = qw/ aaa bbb aaa bbb aaa /;
my @b = qw/ fff fff fff fff fff /;
Benchmark::cmpthese -1, {
diff => sub {
for my $s (@a) {
$r = qr/$s/;
}
},
same => sub {
for my $s (@b) {
$r = qr/$s/;
}
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment