An extremely simple and unoptimized brainfuck interpreter, written using the C++ programming language. practically unusable, but pretty fun nonetheless.
Usage: Compile the code first, using g++ or clang++:
g++ ./interpreter.cpp -o ./interpreter
clang++ ./interpreter.cpp -o ./interpreter
then run the compiled file with the brainfuck file name given as the command-line argument:
./interpreter ./<brainfuck_file>