summaryrefslogtreecommitdiff
path: root/AST.hs
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2019-11-22 20:38:16 +0100
committertomsmeding <tom.smeding@gmail.com>2019-11-22 20:38:16 +0100
commiteb424bfc184132c0f8075e706ffb0494ef80b2b3 (patch)
tree3520a8db38d0aa29bf106355d413e49b69314310 /AST.hs
parent5571189b64ea3a566f89aa55a15a99d8122815c6 (diff)
Deduplicate data table entries
Diffstat (limited to 'AST.hs')
-rw-r--r--AST.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/AST.hs b/AST.hs
index a096227..5fd2518 100644
--- a/AST.hs
+++ b/AST.hs
@@ -19,7 +19,7 @@ data Value
| VLet [(Name, Value)] Value
| VBuiltin String
| VEllipsis
- deriving (Eq)
+ deriving (Eq, Ord)
instance Show Program where