No description
- Python 100%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| .gitignore | ||
| hello.py | ||
| README.md | ||
| test_hello.py | ||
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