Hi Anthony: > Have I correctly implemented tail recursive versions of the > above functions, and, if so,
Sadly, REBOL does not internally implement tail end recursion. That means the maximum stack depth (around 8000 for the more recent versions, as you've discovered) places a limit on stack-based algorithms using basic REBOL. The good news is that you can change most things in REBOL....Here's an earlier thread that does just that: http://www.rebol.org/cgi-bin/cgiwrap/rebol/ml-display-thread.r?m=rmlQQHK Sunanda. -- To unsubscribe from the list, just send an email to lists at rebol.com with unsubscribe as the subject.
