summaryrefslogtreecommitdiffstats
path: root/src/forth/mod.rs
diff options
context:
space:
mode:
authorBrian Cully <bjc@spork.org>2025-08-22 13:38:47 -0400
committerBrian Cully <bjc@spork.org>2025-08-22 14:42:36 -0400
commit79441128958669b16ce8dfe39a3684069921f604 (patch)
tree4112092916e7bf568cc67e6bcd0621779e2d6eae /src/forth/mod.rs
parent4f7bbbf4ee269ef6638c69fc5982b0dfe4b8b947 (diff)
downloadautomathon-79441128958669b16ce8dfe39a3684069921f604.tar.gz
automathon-79441128958669b16ce8dfe39a3684069921f604.zip
make compile button actually compile
Diffstat (limited to 'src/forth/mod.rs')
-rwxr-xr-xsrc/forth/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/forth/mod.rs b/src/forth/mod.rs
index 5792148..063b40e 100755
--- a/src/forth/mod.rs
+++ b/src/forth/mod.rs
@@ -1,5 +1,5 @@
-mod interp;
-mod parser;
+pub mod interp;
+pub mod parser;
#[cfg(test)]
mod tests {