Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. {-# LANGUAGE ExistentialQuantification #-}
  2. {-# LANGUAGE Rank2Types #-}
  3.  
  4. --newtype EliLiteral = EliLiteral
  5. -- { unEliLiteran :: forall a. Show a => a
  6. -- }
  7.  
  8. data EliLiteral = forall a. Show a => EliLiteral a
  9.  
  10. instance Show EliLiteral where
  11. show (EliLiteral x) = show x
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement