Posting a stack overflow question on stackoverflow.com, how amusing :-)
I\'m running some recursive Ruby code and I get the: \"Stack level too deep (SystemStac
Ruby uses the C stack so your options include using ulimit or compiling Ruby with some compiler/linker stack size flag. Tail recursion is yet to be implemented and Ruby's current support for recursion isn't so great. As cool and elegant recursion is, you might want to consider coping with the language's limitations and writing your code in a different way.