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), }