brainfoamkit 1.1.0

An interpreter for the brainf*** language
Documentation
// SPDX-FileCopyrightText: 2023 - 2024 Ali Sajid Imami
//
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT

// Add the relevant modules
mod ascii_char;
mod ascii_table;
mod bit;
mod byte;
mod instruction;
mod iterable_byte;
mod iterable_nybble;
mod machine;
mod machine_builder;
mod nybble;
mod program;
mod vm_reader;

// Re-export the useful contents
pub use ascii_char::AsciiChar;
pub use ascii_table::AsciiTable;
pub use bit::Bit;
pub use byte::Byte;
pub use instruction::Instruction;
pub use iterable_byte::IterableByte;
pub use iterable_nybble::IterableNybble;
pub use machine::VirtualMachine;
pub use machine_builder::VirtualMachineBuilder;
pub use nybble::Nybble;
pub use program::Program;
pub use vm_reader::{
    MockReader,
    VMReader,
    VMReaderType,
};