mirror of
https://github.com/luau-lang/luau.git
synced 2025-03-03 18:51:42 +00:00
7 lines
150 B
Agda
7 lines
150 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
|