Hi everybody I'm searching debuggers for Haskell, and I have this list: nhc tracer hood QuickCheck Auburn Hugs interpreter ghci (GHC interpreter) Some body know another debugger? Thanks a lot! Ernesto.
On Sat, 2006-03-11 at 13:36 -0300, Ernesto De Santis wrote:
Hi everybody
I'm searching debuggers for Haskell, and I have this list: nhc tracer hood QuickCheck Auburn Hugs interpreter ghci (GHC interpreter)
Some body know another debugger?
http://www.cs.mu.oz.au/~bjpop/buddha/ http://www.haskell.org/hat Duncan
Hello Ernesto, Saturday, March 11, 2006, 7:36:21 PM, you wrote: EDS> Some body know another debugger? printf :) -- Best regards, Bulat mailto:Bulat.Ziganshin@gmail.com
Debug.Trace, such as (trace (show foo) a) and System.IO.Unsafe, such as (unsafePerformIO ( print foo >> return a))
Or see this recent post, a trace that prints line and column numbers: http://www.haskell.org//pipermail/haskell-cafe/2006-February/014723.html Jared.
participants (5)
-
Bulat Ziganshin -
Chris Kuklewicz -
Duncan Coutts -
Ernesto De Santis -
Jared Updike