1 2 3 4 5 6 7 8 9
//! The definition and parsing of the intermediate code for brainfuck. //! //! This module defines the brainfuck intermediate code, //! and provides a function to parse brainfuck code into the intermediate code. mod bfcode; mod parser; pub use bfcode::*;