https://github.com/thehxdev/bfrs
Brainfuck interpreter in Rust
https://github.com/thehxdev/bfrs
brainfuck interpreter rust
Last synced: 30 days ago
JSON representation
Brainfuck interpreter in Rust
- Host: GitHub
- URL: https://github.com/thehxdev/bfrs
- Owner: thehxdev
- Created: 2024-03-30T16:21:54.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-09T22:12:43.000Z (over 1 year ago)
- Last Synced: 2025-11-29T17:43:58.460Z (8 months ago)
- Topics: brainfuck, interpreter, rust
- Language: Rust
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```