Skip to content

Instantly share code, notes, and snippets.

@siddhartha-gadgil
Last active January 4, 2016 14:19
Show Gist options
  • Save siddhartha-gadgil/8633966 to your computer and use it in GitHub Desktop.
Save siddhartha-gadgil/8633966 to your computer and use it in GitHub Desktop.
Booleans
data Bool : Set where
True : Bool
False: Bool
not : Bool → Bool
not True = False
not False = True
_&_ : Bool → Bool → Bool
True & True = True
False & _ = False
True & False = False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment