Files
codeql/python/ql/test/query-tests/Statements/exit/test.py
2018-11-19 15:15:54 +00:00

8 lines
102 B
Python

def main():
try:
process()
except Exception as ex:
print(ex)
exit(1)