On Sat Aug 29 04:31:00 2015, coke wrote: > BTW, I am having a really hard time on moar making this crash. I added > some debug output to show the number of invocations on moar. > > Got up to 10000000 invocations before I got bored and killed it.
Here's a sample showing the iterations.
sub recursion($a) {
my $c = $++;
$c %% 100_000 && say $c;
recursion($a);
}
recursion("see also");
--
Will "Coke" Coleda
