Re: [Haskell] debuggers

2006-03-11 Thread Duncan Coutts
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/

Re: [Haskell] debuggers

2006-03-11 Thread Bulat Ziganshin
Hello Ernesto, Saturday, March 11, 2006, 7:36:21 PM, you wrote: EDS Some body know another debugger? printf :) -- Best regards, Bulatmailto:[EMAIL PROTECTED] ___ Haskell mailing list Haskell@haskell.org

Re: [Haskell] debuggers

2006-03-11 Thread Chris Kuklewicz
Bulat Ziganshin wrote: Hello Ernesto, Saturday, March 11, 2006, 7:36:21 PM, you wrote: EDS Some body know another debugger? printf :) Debug.Trace, such as (trace (show foo) a) and System.IO.Unsafe, such as (unsafePerformIO ( print foo return a))

Re: [Haskell] debuggers

2006-03-11 Thread Jared Updike
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.