circuitpython/tests/stress/recursion.py
2021-03-15 19:27:36 +05:30

9 lines
85 B
Python

def foo():
foo()
try:
foo()
except RuntimeError:
print("RuntimeError")