Created the basic main structure.

This commit is contained in:
2024-02-19 01:39:43 -05:00
parent 927d5e524b
commit 9ef1e41d28

View File

@@ -0,0 +1,8 @@
def main():
try:
print()
except Exception as e:
print(f"{e}")
if __name__ == "__main__":
main()