Name: Anonymous 2009-05-14 10:08
Runtime Error: maximum recursion depth exceededHow annoying.
What's the maximum number of recursive calls you can make in FIOC?
def fioc(n):
"""The Forced Indentation Of Code"""
print(n, end=" ")
fioc(n+1)