This file contains hidden or 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
{-# LANGUAGE KindSignatures #-} | |
{-# LANGUAGE ConstraintKinds, GADTs #-} | |
{-# LANGUAGE FlexibleContexts #-} | |
import GHC.Exts | |
-- see http://www.reddit.com/r/haskell/comments/117r1p/whats_wrong_with_ghc_haskells_current_constraint/ | |
data Dict :: Constraint -> * where | |
Dict :: c => Dict c |
This file contains hidden or 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
{-# LANGUAGE ImplicitParams #-} | |
import Control.Monad | |
import Control.Monad.Fix | |
import Control.Applicative | |
import Control.Concurrent | |
import Control.Concurrent.MVar | |
import Control.Exception | |
import Prelude hiding (catch) | |
import Data.IORef | |
import Data.Traversable |
NewerOlder