ref: bd9e211f7c14b4d8c5cc527321a2645e9f4bb1ad
dir: /lib/Data/Eq.hs/
module Data.Eq( module Data.Eq ) where import Primitives import Data.Bool_Type infix 4 ==,/= class Eq a where (==) :: a -> a -> Bool (/=) :: a -> a -> Bool x /= y = if x == y then False else True