aboutsummaryrefslogtreecommitdiff
path: root/src/sexp/display.rs
diff options
context:
space:
mode:
authorJoel Kronqvist <joel.kronqvist@iki.fi>2025-08-06 17:05:55 +0300
committerJoel Kronqvist <joel.kronqvist@iki.fi>2025-08-06 17:05:55 +0300
commit3e1bf7f9946efe70d452c71494ac77ed39110804 (patch)
treef7682f538db9d8b77890e8c0e9c54eb2968d4388 /src/sexp/display.rs
parent313c044b4a878a425aaca6554576f5154ace8ff9 (diff)
downloadmyslip-3e1bf7f9946efe70d452c71494ac77ed39110804.tar.gz
myslip-3e1bf7f9946efe70d452c71494ac77ed39110804.zip
Added print, raised level on which UnboundGeneric error is returned
Diffstat (limited to 'src/sexp/display.rs')
-rw-r--r--src/sexp/display.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sexp/display.rs b/src/sexp/display.rs
index c3db144..dc5d6cb 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(),
+ Print => "print".to_string(),
Let => "let".to_string(),
Nil => "()".to_string(),
})