Find limit of recursion: Difference between revisions

Content added Content deleted
(→‎{{header|Vlang}}: Rename "Vlang" in "V (Vlang)")
Line 1,125: Line 1,125:
=={{header|EasyLang}}==
=={{header|EasyLang}}==


<syntaxhighlight lang="text">func recurse i . .
<syntaxhighlight lang="text">
func recurse i . .
print i
if i mod 100 = 0
print i
.
call recurse i + 1
call recurse i + 1
.
.
call recurse 0</syntaxhighlight>
call recurse 1
</syntaxhighlight>
<pre>
<pre>
0
.
.
.
.
9100
9999
InternalError: too much recursion
----------------------------
| max call depth of exceeded |
----------------------------
</pre>
</pre>