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/util.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sexp/util.rs') diff --git a/src/sexp/util.rs b/src/sexp/util.rs index a4e3ab4..c31358f 100644 --- a/src/sexp/util.rs +++ b/src/sexp/util.rs @@ -22,6 +22,6 @@ impl From for SLeaf { } } -pub fn sexp(x: impl Into>, y: impl Into>) -> SExp { +pub fn scons(x: impl Into>, y: impl Into>) -> SExp { SCons(x.into(), y.into()) } -- cgit v1.2.3