Find limit of recursion: Difference between revisions

Content deleted Content added
→‎E: new can't-do-this example
→‎{{header|AutoHotkey}}: added AutoHotkey
Line 1: Line 1:
{{task|Text processing}}{{selection|Short Circuit|Console Program Basics}}[[Category:Basic language learning]][[Category:Programming environment operations]]Find the limit of recursion.
{{task|Text processing}}{{selection|Short Circuit|Console Program Basics}}[[Category:Basic language learning]][[Category:Programming environment operations]]Find the limit of recursion.

=={{header|AutoHotkey}}==
<lang AutoHotkey>Recurse(0)

Recurse(x)
{
TrayTip, Number, %x%
Recurse(x+1)
}</lang>

Last visible number is 827.


=={{header|Batch File}}==
=={{header|Batch File}}==