Initial commit

This commit is contained in:
Peter Vacho 2025-02-17 19:09:13 +01:00
commit 4cc8b53855
Signed by: school
GPG key ID: 8CFC3837052871B4
8 changed files with 494 additions and 0 deletions

0
src/__init__.py Normal file
View file

7
src/__main__.py Normal file
View file

@ -0,0 +1,7 @@
def main() -> None:
"""Program entrypoint."""
print("Hello from task1!")
if __name__ == "__main__":
main()