initial commit: greet demo

This commit is contained in:
2026-04-28 22:15:06 +08:00
commit 1545426f83
3 changed files with 18 additions and 0 deletions

6
app.py Normal file
View File

@@ -0,0 +1,6 @@
def greet(name: str) -> str:
return f"Hello, {name}!"
if __name__ == "__main__":
print(greet("world"))