FCK
Fck is a simple Brainfuck lexer, parser, and interpreter. It includes a library crate that exports most of the functionality, and an executable that provides a CLI for lexing, parsing, and executing Brainfuck programs.
Fck binary
To see a list of all commands, use:
Examples
Using run and run_file.
use ;
Using the individual modules.
use lex;
use parse;
use Interpreter;