http://qs321.pair.com?node_id=11108774

Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Memory stays fixed:
$|++; while () { print '.'; select undef,undef,undef,0.01; }
Memory use grows:
$|++; re(); sub re { print '.'; select undef,undef,undef,0.01; re() }
What's going on?