brainfuck
brainfuck copied to clipboard
//: A simple brainfuck compiler for x86_64-linux in c.

The 🧠 Fvck Interpreter
A pretty tiny interpreter for the programming language brainfuck
The goal of this project is to implement a simple interpreter for brainfuck using features built into C.
installation
Installation can be done by using makefile as follows.
$ git clone --depth=1 https://github.com/pwnwriter/brainfuck.git
$ cd brainfuck
$ make
$ sudo/doas make install
You can test the interpreter by running
$ make test
inside brainfuck directory.
it should show It works!
If you want to help then you can make the interpreter more advanced, i would love to accept your PR's;)