Get rid of unneeded Eq instance
This commit is contained in:
parent
5af98f6c9a
commit
41fc74eb98
|
@ -25,7 +25,7 @@ data Value = String String
|
||||||
| Empty
|
| Empty
|
||||||
| Tuple (Value, Value)
|
| Tuple (Value, Value)
|
||||||
| List [Value]
|
| List [Value]
|
||||||
deriving (Eq, Show)
|
deriving (Show)
|
||||||
|
|
||||||
class Valuable a where
|
class Valuable a where
|
||||||
toValue :: a -> Value
|
toValue :: a -> Value
|
||||||
|
|
Loading…
Reference in New Issue