bfi is simple interpreter for the brainfuck esolang, if you don't know what brainfuck is, look here
- Build the binary and put it on your path(or use it from here)
see the Compile section. - type bfi followed by the brainfuck program you want to run and the optional
params like this
bfi <bf_program> [--opt_params]. to see the list of optional params, typebfi --help.
To compile you will need GNU Make and GCC.
git clone https://github.com/JnnDrc/bf_interpreter
cd bf_interpreter
makeif you want to use gdb, type make debug and use the 'bfi-g' executable
.\
| bf_programs\ : some example programs
| | bf_org : some example programs from brainfuck.org
| Makefile : GNU Make build tool
| README.md : this file
| bfi-g.exe : debug build for windows
| bfi.c : source code