An open API service indexing awesome lists of open source software.

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

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)