An open API service indexing awesome lists of open source software.

https://github.com/vtan/brainzag

An interpreter and JIT compiler for the Brainfuck programming language, written in Zig
https://github.com/vtan/brainzag

brainfuck interpreter jit-compiler zig

Last synced: about 1 year ago
JSON representation

An interpreter and JIT compiler for the Brainfuck programming language, written in Zig

Awesome Lists containing this project

README

          

# brainzag

An interpreter and JIT compiler for the Brainfuck programming language, written in Zig.
JIT compilation is implemented for the x86-64, ARM64 and 64-bit RISC-V CPU architectures.

```console
$ zig build run -- -o test/hello.bf # interpret with optimizations
$ zig build run -- -jo test/hello.bf # compile with optimizations
```