Guest User

Untitled

a guest
Jan 19th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. {-# LANGUAGE DataKinds, GADTs, KindSignatures #-}
  2.  
  3. data Nand :: Bool -> Bool -> * where
  4. MkNandTF :: Nand True False
  5. MkNandFT :: Nand False True
  6. MkNandFF :: Nand False False
Add Comment
Please, Sign In to add comment