A simple compiler for Brainfuck programming language.
Well, technically it's an Interpreter 😝
$ cd BrainfuckCompiler
$ g++ main.cpp -o bfc
$ ./bfc brainfuck_program
$ ./bfc brainfuck_program input_file
There are some sample brainfuck programs in the programs folder.