A simple Python Hello World application created for Q Dev GH Integration.
This repository contains a basic Hello World application written in Python. It demonstrates:
- A simple Python module with a function that returns "Hello, World!"
- Unit tests to verify the functionality
To run the application:
python hello_world.pyTo run the tests:
python -m unittest discover testshello_world.py- Main application filetests/- Directory containing unit teststest_hello_world.py- Tests for the Hello World functionality