Initial commit: README, hello.py, .gitignore

- README.md mit Projektbeschreibung
- hello.py: einfaches Python-Greet-Script mit Typ-Annotation
- .gitignore für Python und IDE-Dateien
This commit is contained in:
2026-05-24 10:02:52 +02:00
commit 52067f85e5
3 changed files with 30 additions and 0 deletions

10
.gitignore vendored Normal file
View File

@@ -0,0 +1,10 @@
# Python
__pycache__/
*.py[cod]
*.egg-info/
.venv/
# IDE
.vscode/
.idea/