summary refs log tree commit diff
path: root/src/constants.rs
blob: 6651b22d5c1ad18fd3f2312a790c1c409cdd9459 (plain) (blame)
1
2
3
4
//! Constants and types used throughout the Brainfuck interpreter.

/// The inner type used by a Brainfuck tape.
pub type TapeInner = u8;