Prelude-v23.0.0
Returns True if both arguments are equal and returns False otherwise
True
False
--| Returns `True` if both arguments are equal and returns `False` otherwiselet equal : Bool -> Bool -> Bool = \(x : Bool) -> \(y : Bool) -> x == yin equal