# Testapp A small interactive terminal application. Start it once and type commands to get short text responses. ## Requirements - Python 3.9+ ## Setup ```bash pip install -r requirements.txt ``` ## Run ```bash python src/main.py ``` You'll see: ``` welcome to the best testapp ever > ``` ## Commands | Command | Description | |---|---| | `help` | Show available commands | | `exit` | Print "Goodbye!" and exit the application | Type any unrecognised command and the app will tell you what's available. ## Development Run tests: ```bash python -m pytest tests/ -v ```