mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 22:35:43 +08:00
9 lines
131 B
Agda
9 lines
131 B
Agda
|
module Properties.Dec where
|
||
|
|
||
|
data ⊥ : Set where
|
||
|
|
||
|
data Dec(A : Set) : Set where
|
||
|
yes : A → Dec A
|
||
|
no : (A → ⊥) → Dec A
|
||
|
|