Get rid of unneeded Eq instance

This commit is contained in:
Niels G. W. Serup 2024-10-09 23:21:07 +02:00
parent 5af98f6c9a
commit 41fc74eb98
No known key found for this signature in database
GPG Key ID: 38EEEBCE67324F19
1 changed files with 1 additions and 1 deletions

View File

@ -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