Find limit of recursion: Difference between revisions

Content deleted Content added
Aerobar (talk | contribs)
added RPL
Miks1965 (talk | contribs)
PascalABC.NET
Line 2,336:
=={{header|Pascal}}==
See [[Find_limit_of_recursion#Delphi | Delphi]]
 
=={{header|PascalABC.NET}}==
In .NET it's impossible to catch StackOverflowException
 
<syntaxhighlight lang="delphi">
procedure Recur(i: integer);
begin
System.Console.WriteLine(i);
Recur(i + 1);
end;
 
begin
Recur(0);
end.
</syntaxhighlight>
 
The Highest level of recursion I reached is 15909.
 
=={{header|Perl}}==