Skip to content

Instantly share code, notes, and snippets.

@kraih
Created November 21, 2011 04:38
Show Gist options
  • Save kraih/1381643 to your computer and use it in GitHub Desktop.
Save kraih/1381643 to your computer and use it in GitHub Desktop.
use 5.14.0;
# Very common leak
my $foo;
$foo = sub {
my ($i, $j) = @_;
return if $i >= $j;
say $i++;
$foo->($i, $j);
};
$foo->(1, 10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment