7 lines
168 B
Text
7 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
|