hello-team/hello_team.py
CODER c9989bf313
Some checks failed
CI / check (pull_request) Failing after 4s
feat: add hello_team.py with datetime greeting and minimal requirements.txt
2026-07-23 15:38:50 +00:00

9 lines
188 B
Python

from datetime import datetime
def main():
now = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
print(f"Hello from the AI Dev Team — {now}")
if __name__ == "__main__":
main()