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