shithub: MicroHs

ref: 29161b2a72b72761efb030f9b607c23020ae1ebe
dir: /lib/Debug/Trace.hs/

View raw version
module Debug.Trace(module Debug.Trace) where
import Prelude
import Primitives

trace :: forall a . String -> a -> a
trace msg a = primitive "IO.performIO" (
  do
    putStrLn msg
    return a
  )

traceM :: forall m a . Monad m => String -> m ()
traceM s = trace s (return ())