luau/prototyping/Properties/Dec.agda
2022-02-11 18:24:02 -06:00

8 lines
151 B
Agda

module Properties.Dec where
open import Properties.Contradiction using (¬)
data Dec(A : Set) : Set where
yes : A Dec A
no : ¬ A Dec A