agda-unused-0.2.0: data/expression/ExtendedLam.agda
module ExtendedLam where
data Bool
: Set
where
false
: Bool
true
: Bool
f
: Bool
→ Bool
→ Bool
f
= λ
{ x false
→ true
; y true
→ y
}
module ExtendedLam where
data Bool
: Set
where
false
: Bool
true
: Bool
f
: Bool
→ Bool
→ Bool
f
= λ
{ x false
→ true
; y true
→ y
}