This project aims to implement a brainfuck interpreter in Rust. In addition, this also aims to provide a terminal-based TUI for stepping through and understanding the brainfuck programs.
| Platform | Rust Version |Status |
| -------- | ------ | ------ |
| Linux | stable
beta
nightly
MSRV (1.70.0) |
|
| Windows | stable
beta
nightly
MSRV (1.70.0) |
|
| macOS | stable
beta
nightly
MSRV (1.70.0) |
|
Brainfuck is an interesting esoteric language. It is turing complete and can essentially be used as a general purpose programming language. However, it has only 8 individual symbols that are used to instruct the interpreter. This makes it both fun and challenging to implement.
While several C and C++ interpreters for Brainfuck exist, I believe that it is particularly well suited for implementation in Rust due the combination of memory-safety, speed and zero-cost abstractions. Additionally, the interpreter is expected to be non-trivial in complexity while still only scratching the surface of the features Rust has to offer. Thus, it provides an excellent educational opportunity for someone trying to learn Rust.
Briefly, the interpreter is implemented as a Virtual Machine on top of the existing Rust runtime. This frees us from low-level hardware constraints, allowing us to focus on the core of the program. The language remains focused on 8-byte operations and the ASCII code, allowing for rust to shine as a fast language.
More details regarding the implementation, including an EBNF grammar and other design tradeoffs can be found in the lang directory.
See the Contributing for details on how to contribute to the project.
This project is governed by the Contributor Code of Conduct Covenant. Details are outlined in the CODE OF CONDUCT.