ansible/dhall/Prelude/Bool/equal.dhall
2024-11-26 00:55:56 -05:00

6 lines
168 B
Text

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