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

12
hello.py Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env python3
"""Einfaches Test-Script für Gitea CI-Tests."""
def greet(name: str = "Welt") -> str:
return f"Hallo, {name}!"
if __name__ == "__main__":
print(greet())
print(greet("Kevin"))