Brainfoamkit

GitHub release (latest by date) GitHub tag (latest SemVer) Continuous integration Contribute with Gitpod

Open in Gitpod

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.

Builds

| Platform | Rust Version |Status | | -------- | ------ | ------ | | Linux | stable
beta
nightly
MSRV (1.70.0) | Ubuntu x Stable Rust
Ubuntu x Beta Rust
Ubuntu x Nightly Rust
Ubuntu x MSRV Rust | | Windows | stable
beta
nightly
MSRV (1.70.0) | macos x Stable Rust
macos x Beta Rust
macos x Nightly Rust
macos x MSRV Rust | | macOS | stable
beta
nightly
MSRV (1.70.0) | Windows x Stable Rust
Windows x Beta Rust
Windows x Nightly Rust
Windows x MSRV Rust |

Rationale

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.

Implementation Details

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.

(Planned) Features

Current Status

Contributing

See the Contributing for details on how to contribute to the project.

Code of Conduct

This project is governed by the Contributor Code of Conduct Covenant. Details are outlined in the CODE OF CONDUCT.