Files
TencentOS-tiny/components/language/micropython/tests/stress/recursion.py
2022-09-29 12:10:37 +08:00

9 lines
85 B
Python

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