aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2021-11-13 16:02:14 -0800
committerBryan Newbold <bnewbold@robocracy.org>2021-11-13 16:03:09 -0800
commit6666f23e6b8a54e402f2aaf9e64f658f3d7fae29 (patch)
treea6ff2dd408086866aa66b2f14c613257c4703463 /src/lib.rs
parent4955c32416cc7a825475fe58cf7937c954537b43 (diff)
downloadcasual-6666f23e6b8a54e402f2aaf9e64f658f3d7fae29.tar.gz
casual-6666f23e6b8a54e402f2aaf9e64f658f3d7fae29.zip
initial work on term rewrite rule parsingHEADmaster
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 4137840..609dc79 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -2,9 +2,11 @@ use std::io;
use std::io::Write;
mod cexpr;
+mod rewrite;
mod sexpr;
pub use cexpr::{CExpr, CNumber};
+pub use rewrite::Rule;
pub use sexpr::{sexpr_parse_file, SExpr};
pub type Result<T, E = String> = std::result::Result<T, E>;