zbfi is a BrainFuck programming language interpreter written in zig. It is written only to learn zig for myself but you can experiment with the code however you like.
To build the project you only need to have a zig compiler - v0.9.0 All the install instructions are there, so download and install it according to the instructions then follow the below steps.
- Clone it with
git clone --recursive https://github.com/PrajwalCH/zbfi
- Change directory to zbfi
- Run
zig build -Drelease-safe=true
to build it. - And at last run
./zig-out/bin/zbfi
for interactive mode or./zig-out/bin -f <file name>
to run source file