From 23b2028bdce46d02209fc2df70fc5468a8beffa8 Mon Sep 17 00:00:00 2001 From: Joel Kronqvist Date: Wed, 6 Aug 2025 14:15:12 +0300 Subject: Added boilerplate and tests for let-binds --- src/type/display.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/type/display.rs') diff --git a/src/type/display.rs b/src/type/display.rs index 03f8f4b..fe54941 100644 --- a/src/type/display.rs +++ b/src/type/display.rs @@ -21,6 +21,7 @@ impl fmt::Display for Type { Boolean => write!(f, "{}", "Bool"), QuoteTy => write!(f, "{}", "Quote"), VecType => write!(f, "{}", "Vector"), + LetType => write!(f, "{}", "Let"), VecOf(ty) => write!(f, "({} ... {})", *ty, *ty), Arrow(a, b) => write!(f, "({} -> {})", a, b), List(types) => write!( -- cgit v1.2.3