Skip to content

Instantly share code, notes, and snippets.

@un-ro
Last active March 3, 2021 02:40
Show Gist options
  • Select an option

  • Save un-ro/59f2450e6278af5ebe4b05e0c06e47db to your computer and use it in GitHub Desktop.

Select an option

Save un-ro/59f2450e6278af5ebe4b05e0c06e47db to your computer and use it in GitHub Desktop.
GOD DAMN RECURSION
# Fix: RecursionError
def foo(x):
if(x < 1):
print("Done")
else:
foo(x-1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment