mirror of
https://github.com/luau-lang/luau.git
synced 2024-12-13 05:20:38 +00:00
c5477d522d
* First cut of strict mode Co-authored-by: Lily Brown <lily@lily.fyi>
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
|