From f5332b2c7bbf6128de5f2467560e808d8d8d41f3 Mon Sep 17 00:00:00 2001
From: Sébastien Dailly <sebastien@dailly.me>
Date: Thu, 26 Dec 2024 21:22:23 +0100
Subject: Added a cmp function

---
 lib/expression/t.ml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

(limited to 'lib/expression/t.ml')

diff --git a/lib/expression/t.ml b/lib/expression/t.ml
index 7e61317..2df374f 100644
--- a/lib/expression/t.ml
+++ b/lib/expression/t.ml
@@ -34,12 +34,14 @@ and binary_operator =
   | Or
 
 and funct =
-  | Upper
+  | Cmp
   | Trim
+  | Upper
 
 let name_of_function = function
   | Upper -> "UPPER"
   | Trim -> "TRIM"
+  | Cmp -> "CMP"
 
 let name_of_operator = function
   | Equal -> "="
-- 
cgit v1.2.3