From 1e712e91edea0735c5eb440af26ac6d4454e70a9 Mon Sep 17 00:00:00 2001 From: Joel Kronqvist Date: Tue, 5 Aug 2025 15:12:27 +0300 Subject: Fix: quote is not a typewise identity function. Added vt(&str) as util for VarType(String). --- 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 3e4f49c..8eb0647 100644 --- a/src/type/display.rs +++ b/src/type/display.rs @@ -19,6 +19,7 @@ impl fmt::Display for Type { match self { Integer => write!(f, "{}", "Int"), Boolean => write!(f, "{}", "Bool"), + QuoteTy => write!(f, "{}", "Quote"), Arrow(a, b) => write!(f, "({} -> {})", a, b), List(types) => write!( f, -- cgit v1.2.3