shithub: MicroHs

ref: c3d5b2a4be56b65a09e0e52c01a4646ce407302b
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 :: Type -> Type) a . Monad m => String -> m ()
traceM s = trace s (return ())