summary refs log tree commit diff
path: root/src/constants.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/constants.rs4
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;