Find limit of recursion: Difference between revisions

Content added Content deleted
(add Standard ML)
(Added Arturo implementation)
Line 383: Line 383:
{{output}}
{{output}}
<lang applescript>"Recursion limit encountered at 733"</lang>
<lang applescript>"Recursion limit encountered at 733"</lang>

=={{header|Arturo}}==

<lang rebol>recurse: function [x][
print x
recurse x+1
]

recurse 0</lang>

{{out}}

<pre>
...
...
...
10912
10913
10914
[2] 67851 segmentation fault arturo find\ limit\ of\ recursion.art</pre>


=={{header|AutoHotkey}}==
=={{header|AutoHotkey}}==