2023-08-28 12:43:43 +08:00

7 lines
86 B
Python

D = 10
try:
import abc # does not exist
exit(1)
except ImportError:
pass