ref: 51f905138babfc67f3291a40c8b5ddd7ec85b73d
dir: /lib/Debug/Trace.hs/
module Debug.Trace(module Debug.Trace) where import Prelude(); import MiniPrelude import Primitives trace :: forall a . String -> a -> a trace msg a = primitive "IO.performIO" ( do putStrLn msg return a ) traceM :: forall m . Monad m => String -> m () traceM s = trace s (return ())