diff options
author | Joel Kronqvist <joel.kronqvist@iki.fi> | 2025-08-05 18:07:50 +0300 |
---|---|---|
committer | Joel Kronqvist <joel.kronqvist@iki.fi> | 2025-08-05 18:07:50 +0300 |
commit | d64165e9e6af92bfe350e5d2cc46545b28dbb5c0 (patch) | |
tree | d7a6abb03a83ad08194b94db7b82a6c5f32b4819 /src/sexp/display.rs | |
parent | 1e712e91edea0735c5eb440af26ac6d4454e70a9 (diff) | |
download | myslip-d64165e9e6af92bfe350e5d2cc46545b28dbb5c0.tar.gz myslip-d64165e9e6af92bfe350e5d2cc46545b28dbb5c0.zip |
Added vectors and tests for their evaluation and typing
Diffstat (limited to 'src/sexp/display.rs')
-rw-r--r-- | src/sexp/display.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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(), }) } |