RosettaCodeData/Task/Find-limit-of-recursion/CoffeeScript/find-limit-of-recursion.coffee
Ingy döt Net 776bba907c Sync
2013-10-27 22:24:23 +00:00

7 lines
160 B
CoffeeScript

recurse = ( depth = 0 ) ->
try
recurse depth + 1
catch exception
depth
console.log "Recursion depth on this system is #{ do recurse }"