ref: 15e2ba155a9f1b0260c7feceef0552b8e539b00c
dir: /lib/Debug/Trace.hs/
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
)