Ecosyste.ms: Awesome
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: 13 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 (10 months ago)
- Default Branch: main
- Last Pushed: 2024-10-30T11:04:32.000Z (3 months ago)
- Last Synced: 2024-11-14T04:22:26.891Z (2 months ago)
- Topics: brainfuck, interpreter, rust
- Language: Rust
- Homepage:
- Size: 10.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
```