bfdbg 0.2.1

A brainfuck interpreter and debugger implemented in rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use derive_more::Display;

#[derive(Clone, Display)]
pub enum ExecutorCommand {
    MoveRight,
    MoveLeft,
    Increment,
    Decrement,
    Output,
    Input,
    #[display("JumpForward({})", _0)]
    JumpForward(usize),
    #[display("JumpBack({})", _0)]
    JumpBack(usize),
}