Created
January 15, 2019 09:00
-
-
Save andrevidela/1a80578305a3429996358d996249c1fc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data Set : a -> Type where | |
Empty : Set a | |
Singleton : a -> Set a | |
Union : Set a -> Set a -> Set a | |
Inter : Set a -> Set a -> Set a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment