Find limit of recursion: Difference between revisions

(→‎{{header|Vlang}}: Rename "Vlang" in "V (Vlang)")
Line 1,125:
=={{header|EasyLang}}==
 
<syntaxhighlight lang="text">func recurse i . .
func recurse i . .
print i
if i mod 100 = 0
print i
.
call recurse i + 1
.
call recurse 0</syntaxhighlight>1
</syntaxhighlight>
<pre>
0
.
.
9100
9999
InternalError: too much recursion
----------------------------
| max call depth of exceeded |
----------------------------
</pre>
 
1,983

edits