brainFlipper is simple brainf*ck interpreter written in C. It can execute your code as long as it is syntactically correct. Currently it does not give error message on wrong syntax and will have undefined behavior on wrong syntax. Some sample brainf*ck program are also provided. Program design is inspired by fabianishere/brainfuck.
- Non command charaters are allowed and are treated as comment.
- Supports nested loops. for eg.
[->[->+<]<]
. - Fast.
$ git clone https://github.com/Sidtronics/brainFlipper
$ cd brainFlipper
$ make
$ sudo make install
$ make clean
$ brainc <path/to/src>
eg:
$ brainc programs/mandelbrot.b
$ brainc programs/hello_world.bf
$ sudo make uninstall