https://github.com/thepuppetqueen57/brainrust
BrainRust is a BrainFuck Superset made in Rust!
https://github.com/thepuppetqueen57/brainrust
brainfuck esolang interpreter
Last synced: about 1 year ago
JSON representation
BrainRust is a BrainFuck Superset made in Rust!
- Host: GitHub
- URL: https://github.com/thepuppetqueen57/brainrust
- Owner: Thepuppetqueen57
- License: gpl-3.0
- Created: 2025-03-12T22:52:35.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-12T22:55:39.000Z (over 1 year ago)
- Last Synced: 2025-03-12T23:29:34.938Z (over 1 year ago)
- Topics: brainfuck, esolang, interpreter
- Language: Rust
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Brainrust
BrainRust is a BrainF superset made in Rust!
It has new commands such as `*` which prints a number instead of an ascii character!
Integers are 2 bytes instead of 1 byte and can be negative!
# Commands
Use > or < to move the index.
Use + or - to increment or decrement the index.
Use * to output the index's value.
Use . to output the index's ascii value.
Use , to take user input!