aboutsummaryrefslogtreecommitdiff
path: root/src/sexp/mod.rs
diff options
context:
space:
mode:
authorJoel Kronqvist <joel.kronqvist@iki.fi>2025-07-26 17:50:09 +0300
committerJoel Kronqvist <joel.kronqvist@iki.fi>2025-07-26 17:50:09 +0300
commit6dbcbc54352dc81b6ef2f2ecd9719eac40d8f1e6 (patch)
tree03a14eac21c058ddf5af52e67227553c465900e2 /src/sexp/mod.rs
parentbf4632c461508de5202db98d25cd7ec06787c8dd (diff)
downloadmyslip-6dbcbc54352dc81b6ef2f2ecd9719eac40d8f1e6.tar.gz
myslip-6dbcbc54352dc81b6ef2f2ecd9719eac40d8f1e6.zip
Implemented integer operator dynamics, fixed some tests and added a combination test.
Diffstat (limited to 'src/sexp/mod.rs')
-rw-r--r--src/sexp/mod.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sexp/mod.rs b/src/sexp/mod.rs
index c920e41..087cb67 100644
--- a/src/sexp/mod.rs
+++ b/src/sexp/mod.rs
@@ -18,10 +18,12 @@ pub enum SLeaf {
}
/// An S-Expression; the defining structure of the language.
+///
+/// This structure is not intended to correspond with
+/// IETF-standardized s-expressions; they are only inspiration.
#[derive(Debug)]
#[derive(PartialEq)]
pub enum SExp {
SCons(Box<SExp>, Box<SExp>),
Atom(SLeaf),
}
-