crain 0.1.0

A Brainfuck compiler/interpreter/tool
Documentation
1
2
3
4
5
6
7
8
9
10
//! The definition of the run function.
//!
//! This module defines the brainfuck code frame,
//! and provides some functions to run brainfuck code.

mod bfframe;
mod runner;

pub use bfframe::*;
pub use runner::*;