Brainfuck interpreter in Zig (WIP)

root

bfs

A work-in-progress Brainfuck interpreter in Zig. The tape and callstack are both infinite.

I originally made this to learn Zig. I started it with little to no knowledge about any specific internals of Zig and how it works.

zig build run -- file.bf

Roadmap

  • [x] Implement , command.
  • [x] Move to ArrayList for tape and callstack.
  • [ ] Compile to C.