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

https://github.com/thehxdev/bfrs

Brainfuck interpreter in Rust
https://github.com/thehxdev/bfrs

brainfuck interpreter rust

Last synced: 4 months ago
JSON representation

Brainfuck interpreter in Rust

Awesome Lists containing this project

README

        

# BFRS

BFRS is a BrainFuck interpreter in Rust.

## Build
You MUST build bfrs in release mode to work correctly.

```bash
cargo build --release
```

## Usage
After you built bfrs, provide the source code to execute

```bash
./target/release/bfrs ./examples/helloWorld.bf
```