Task: Build a CLI word counter
Create a simple Python CLI tool called wc.py that:
- Accepts a filename as argument
- Counts lines, words, and characters
- Prints the result in a formatted table
Include a test file test_wc.py using pytest.
When all tests pass, output LOOP_COMPLETE.