dhall-1.42.3: dhall-lang/Prelude/Bool/equal.dhall
--| Returns `True` if both arguments are equal and returns `False` otherwise
let equal
: Bool -> Bool -> Bool
= \(x : Bool) -> \(y : Bool) -> x == y
in equal
--| Returns `True` if both arguments are equal and returns `False` otherwise
let equal
: Bool -> Bool -> Bool
= \(x : Bool) -> \(y : Bool) -> x == y
in equal