From 23b2028bdce46d02209fc2df70fc5468a8beffa8 Mon Sep 17 00:00:00 2001 From: Joel Kronqvist Date: Wed, 6 Aug 2025 14:15:12 +0300 Subject: Added boilerplate and tests for let-binds --- src/sexp/display.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/sexp/display.rs') diff --git a/src/sexp/display.rs b/src/sexp/display.rs index 57d1b50..c3db144 100644 --- a/src/sexp/display.rs +++ b/src/sexp/display.rs @@ -27,6 +27,7 @@ impl fmt::Display for SLeaf { Var(s) => s.to_string(), Quote => "quote".to_string(), Vector => "vector".to_string(), + Let => "let".to_string(), Nil => "()".to_string(), }) } -- cgit v1.2.3