A minimalist yet powerful CLI-based interpreter for the Brainfuck esoteric language, built in Python. Designed to help developers understand how low-level interpreters work while offering a clean and professional tool for executing .bf programs.
You can learn more about this from: https://ambitious-yam-b71.notion.site/What-is-Brainfuck-20bdf188b81e8050a321e6efee10ca4d?source=copy_link
brainfuck-cli/ │ ├── brainfuck.py # Interpreter logic ├── cli.py # Command-line interface ├── examples/ # Sample .bf programs │ └── hello_world.bf ├── README.md # You're here ├── LICENSE # Open source MIT license └── requirements.txt # Dependencies (optional)
🐍 Run from Python CLI
python cli.py examples/hello_world.bf
Example Output:
Hello World!
📥 Installation (Optional if you want to make it pip-installable)
git clone git@github.com:TechWithHer/brainfuck-cli.git
cd brainfuck-cli
python cli.py examples/hello_world.bf