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
- Host: GitHub
- URL: https://github.com/thehxdev/bfrs
- Owner: thehxdev
- Created: 2024-03-30T16:21:54.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-14T17:36:10.000Z (8 months ago)
- Last Synced: 2025-01-13T19:37:47.751Z (6 months ago)
- Topics: brainfuck, interpreter, rust
- Language: Rust
- Homepage:
- Size: 11.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
```