ref: be01052e02dd12c38b19e05a5346c3dbb09e98dd
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 ())