Skip to content

Instantly share code, notes, and snippets.

@wchristian
Created March 16, 2011 13:29
Show Gist options
  • Save wchristian/872488 to your computer and use it in GitHub Desktop.
Save wchristian/872488 to your computer and use it in GitHub Desktop.
use strict;
use warnings;
use Benchmark 'timethis';
timethis(
1,
sub {
my $str;
$str .= ' ' for 0..20_000_000;
},
'memory' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment