https://github.com/mikkel-t/brainfuck
A command line tool for the brainfuck language written in rust
https://github.com/mikkel-t/brainfuck
brainfuck hacktoberfest rust
Last synced: about 2 months ago
JSON representation
A command line tool for the brainfuck language written in rust
- Host: GitHub
- URL: https://github.com/mikkel-t/brainfuck
- Owner: Mikkel-T
- License: mit
- Created: 2022-05-25T14:11:10.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-02-12T09:26:18.000Z (8 months ago)
- Last Synced: 2025-04-11T01:03:28.905Z (6 months ago)
- Topics: brainfuck, hacktoberfest, rust
- Language: Rust
- Homepage:
- Size: 68.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Brainfuck
A command line tool for the brainfuck language written in Rust. Can both check, minify and run brainfuck code.
## Commands
### Run
Runs brainfuck code from a file.
### Minify
Minifies a brainfuck file by removing everything that isn't one of the 8 valid instructions (`>`, `<`, `+`, `-`, `.`, `,`, `[`, `]`).
### Check
Checks the brainfuck code for any syntax errors (Loop braces not balanced). This is also run automatically before running the code.