From 41fc74eb98de80f9cd8ec9b3ca31c50653240458 Mon Sep 17 00:00:00 2001 From: "Niels G. W. Serup" Date: Wed, 9 Oct 2024 23:21:07 +0200 Subject: [PATCH] Get rid of unneeded Eq instance --- byg/src/Types/Value.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/byg/src/Types/Value.hs b/byg/src/Types/Value.hs index baa916f..bfa1269 100644 --- a/byg/src/Types/Value.hs +++ b/byg/src/Types/Value.hs @@ -25,7 +25,7 @@ data Value = String String | Empty | Tuple (Value, Value) | List [Value] - deriving (Eq, Show) + deriving (Show) class Valuable a where toValue :: a -> Value