diff options
Diffstat (limited to 'src/sexp/display.rs')
-rw-r--r-- | src/sexp/display.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sexp/display.rs b/src/sexp/display.rs index ec1b421..703bda3 100644 --- a/src/sexp/display.rs +++ b/src/sexp/display.rs @@ -28,6 +28,9 @@ impl fmt::Display for SLeaf { RestPat(s) => format!("..{s}"), Quote => "quote".to_string(), Vector => "vector".to_string(), + Coprod => "coprod".to_string(), + Inl => "inl".to_string(), + Inr => "inr".to_string(), Concat => "<>".to_string(), Print => "print".to_string(), Let => "let".to_string(), |