diff options
author | Joel Kronqvist <joel.kronqvist@iki.fi> | 2025-08-14 18:48:43 +0300 |
---|---|---|
committer | Joel Kronqvist <joel.kronqvist@iki.fi> | 2025-08-14 18:48:43 +0300 |
commit | f057211407df29c772ac18303f13d5564684979d (patch) | |
tree | 2bbca39327156317a1fb0152889c469523b93d88 /src/sexp/display.rs | |
parent | c411c568d60246cd995ebf6880f4143e458b605f (diff) | |
download | myslip-f057211407df29c772ac18303f13d5564684979d.tar.gz myslip-f057211407df29c772ac18303f13d5564684979d.zip |
feat: statics for fixed point recursion
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 ceab833..e2f4ffc 100644 --- a/src/sexp/display.rs +++ b/src/sexp/display.rs @@ -31,6 +31,7 @@ impl fmt::Display for SLeaf { Print => "print".to_string(), Let => "let".to_string(), Fun => "fn".to_string(), + Fix => "fix".to_string(), Case => "case".to_string(), Ty(t) => t.to_string(), Nil => "()".to_string(), |