An interpreter for the Brainfuck programming language
$ git clone https://github.com/acidicity/bf.git
$ cd bf
This project uses CMake as the build system. You can install it from here.
$ mkdir build && cd build
$ cmake ..
$ cmake --build . --config Release
This binary will be generated inside the bin folder in the project root.
There is a hello world example in the examples/ folder. You can test the executable by running the hello world example.
On Windows,
$ .\bin\Release\bf.exe .\examples\hello_world.bf
On Unix,
$ ./bin/Release/bf ./examples/hello_world.bf
If everything worked out successfully, you should be able to see the "Hello, World!" message printed to the console.