A minimal "Hello, world!" Python example for a beginner programming class.
Files:
hello.py— prints "Hello, world!" when run.tests/test_hello.py— a simple pytest that verifies the output.
How to run locally:
python3 hello.pyHow to run the test (requires pytest):
python3 -m pytest -qLicense: MIT (see LICENSE)