From d64165e9e6af92bfe350e5d2cc46545b28dbb5c0 Mon Sep 17 00:00:00 2001 From: Joel Kronqvist Date: Tue, 5 Aug 2025 18:07:50 +0300 Subject: Added vectors and tests for their evaluation and typing --- 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 96ce435..57d1b50 100644 --- a/src/sexp/display.rs +++ b/src/sexp/display.rs @@ -26,6 +26,7 @@ impl fmt::Display for SLeaf { Int(x) => x.to_string(), Var(s) => s.to_string(), Quote => "quote".to_string(), + Vector => "vector".to_string(), Nil => "()".to_string(), }) } -- cgit v1.2.3