An open API service indexing awesome lists of open source software.

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

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.