Creating boilerplate code. Adding needed imports for project

This commit is contained in:
Pascal Scheiben
2025-09-17 13:19:15 +02:00
parent b4b841d1b8
commit 04054f181e
7 changed files with 29 additions and 3 deletions

0
src/__init__.py Normal file
View File

5
src/main.py Normal file
View File

@@ -0,0 +1,5 @@
def main() -> None:
print("Hello, World!")
if __name__ == "__main__":
main()