https://github.com/parinpan/no-brainfuck
A simple Brainfuck interpreter
https://github.com/parinpan/no-brainfuck
Last synced: 3 months ago
JSON representation
A simple Brainfuck interpreter
- Host: GitHub
- URL: https://github.com/parinpan/no-brainfuck
- Owner: parinpan
- Created: 2023-06-09T02:48:18.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-06-13T18:56:57.000Z (about 2 years ago)
- Last Synced: 2025-02-05T11:38:57.747Z (4 months ago)
- Language: Python
- Size: 1.95 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# no-brainfuck
It's just a simple Brainfuck interpreter. So you don't have to brainfuck your brain to interpret a Brainfuck program.# How to run
Python3 needs to be installed on your machine, and execute this command:
```bash
python3 main.py 'your brainfuck program'
```
**Hello World Example**
```bash
python3 main.py '>++++++++[<+++++++++>-]<.>++++[<+++++++>-]<+.+++++++..+++.>>++++++[<+++++++>-]<+
+.------------.>++++++[<+++++++++>-]<+.<.+++.------.--------.>>>++++[<++++++++>-
]<+.'
```That's it. [Anyway, what's Brainfuck?](https://esolangs.org/wiki/Brainfuck)