Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/PrajwalCH/zbfi
BrainFuck 🤖 language interpreter written in Zig
https://github.com/PrajwalCH/zbfi
brainfuck brainfuck-interpreter interpreter zig zig-lang ziglang
Last synced: 4 months ago
JSON representation
BrainFuck 🤖 language interpreter written in Zig
- Host: GitHub
- URL: https://github.com/PrajwalCH/zbfi
- Owner: prajwalch
- License: mit
- Created: 2021-12-11T14:11:34.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-29T13:44:19.000Z (about 2 years ago)
- Last Synced: 2024-10-15T19:40:56.987Z (4 months ago)
- Topics: brainfuck, brainfuck-interpreter, interpreter, zig, zig-lang, ziglang
- Language: Zig
- Homepage:
- Size: 71.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zbfi
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.## Building
To build the project you only need to have a [zig compiler - v0.9.0](https://ziglang.org/download)
All the install instructions are there, so download and install it according to the instructions then follow the below steps.1. Clone it with `git clone --recursive https://github.com/PrajwalCH/zbfi`
2. Change directory to zbfi
3. Run `zig build -Drelease-safe=true` to build it.
4. And at last run `./zig-out/bin/zbfi` for interactive mode or `./zig-out/bin -f ` to run source file