1
0
Fork 0
mirror of https://github.com/luau-lang/luau.git synced 2025-04-07 20:30:53 +01:00
luau/prototyping/Properties/Dec.agda
Alan Jeffrey c5477d522d
Prototyping strict mode ()
* First cut of strict mode

Co-authored-by: Lily Brown <lily@lily.fyi>
2022-03-02 16:02:51 -06:00

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