Create variables

This commit is contained in:
2025-10-24 20:32:51 +11:00
parent 176c07151a
commit 9ad3bdbc92
6 changed files with 139 additions and 118 deletions

View File

@@ -1,2 +1,5 @@
def error(message: str = "This is a bugged error message. Please report this issue."):
exit(f"\033[91mError: \033[0m{message}")
exit(f"\033[91mError: \033[0m{message}")
def warn(message: str):
print(f"\033[33mWarning: {message}")