- README.md mit Projektbeschreibung - hello.py: einfaches Python-Greet-Script mit Typ-Annotation - .gitignore für Python und IDE-Dateien
13 lines
216 B
Python
Executable File
13 lines
216 B
Python
Executable File
#!/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"))
|
|
|