diff options
Diffstat (limited to 'src/constants.rs')
| -rw-r--r-- | src/constants.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/constants.rs b/src/constants.rs new file mode 100644 index 0000000..6651b22 --- /dev/null +++ b/src/constants.rs @@ -0,0 +1,4 @@ +//! Constants and types used throughout the Brainfuck interpreter. + +/// The inner type used by a Brainfuck tape. +pub type TapeInner = u8; |