From 6dbcbc54352dc81b6ef2f2ecd9719eac40d8f1e6 Mon Sep 17 00:00:00 2001 From: Joel Kronqvist Date: Sat, 26 Jul 2025 17:50:09 +0300 Subject: Implemented integer operator dynamics, fixed some tests and added a combination test. --- src/sexp/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/sexp/mod.rs') 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, Box), Atom(SLeaf), } - -- cgit v1.2.3