3 lines
81 B
Python
3 lines
81 B
Python
|
|
def error(message: str):
|
||
|
|
print(f"\033[91mError: \033[0m{message}")
|
||
|
|
quit()
|