Created
August 14, 2019 10:05
-
-
Save jacobstanley/365937177c68425ccf50ead8af74495a to your computer and use it in GitHub Desktop.
Revisions
-
jacobstanley created this gist
Aug 14, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ 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")