Created
August 14, 2019 10:05
-
-
Save jacobstanley/365937177c68425ccf50ead8af74495a 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
import qualified System.Console.Concurrent as Concurrent | |
trace :: [Char] -> a -> a | |
trace string expr = | |
unsafePerformIO $ do | |
traceIO string | |
return expr | |
traceIO :: [Char] -> IO () | |
traceIO string = do | |
Concurrent.errorConcurrent (string <> "\n") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment