recursion.py 84 B

1234567
  1. def foo():
  2. foo()
  3. try:
  4. foo()
  5. except RuntimeError:
  6. print("RuntimeError")