No description
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-08-17 18:03:44 +00:00
.gitignore phase: Multi-PR smoke test (2/2) 2026-08-17 18:03:42 +00:00
hello.py phase: Multi-PR smoke test (1/2) 2026-08-17 18:02:00 +00:00
README.md phase: Multi-PR smoke test (2/2) 2026-08-17 18:03:42 +00:00
test_hello.py phase: Multi-PR smoke test (1/2) 2026-08-17 18:02:00 +00:00

orchestrator-smoke-test

A minimal Python project that greets people by name and says farewell.

Functions

greet(name)

Returns a friendly greeting for the given name.

from hello import greet

print(greet("Jon"))
# Hello, Jon!

farewell(name)

Returns a farewell for the given name.

from hello import farewell

print(farewell("Jon"))
# Goodbye, Jon!

Testing

Run the unit tests with:

python -m unittest -v