yabf_rs 0.1.2

A simple crate that can be used to embed Brainfuck programs into your Rust programs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Enum to keep track of Brainfuck Instructions
pub enum Instruction {
    Add,
    Sub,
    Left,
    Right,
    Out,
    In,
    /// Contains the index of its matching LoopEnd
    LoopStart(usize),
    /// Contains the index of its matching LoopStart
    LoopEnd(usize),
}